Loading packages and functions

setwd("/Penatal_Adversity/Analysis/")
library(dplyr)      # for data manipulation
library(psych)      # for descriptives
library(ggplot2)    # for plotting
library(gridExtra)  # for arranging plots
library(kableExtra) # for creating tables
library(tidyr)      # for data manipulation
library(xlsx)       # for reading and writing xlsx files
library(tableone)   # for descriptives

select   <- dplyr::select
describe <- psych::describe
options(knitr.kable.NA = '')

Loading datasets and computing study variables

setwd("/ABCD/")

#### ABCD sMRI morphometric and image intensity measures (part 1) ####
#Ex: smri_thick_cdk_cdacatelh - Cortical thickness in mm of APARC ROI lh-caudalanteriorcingulate
header <- read.table("abcd_smrip101.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
mri    <- read.table("abcd_smrip101.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( mri ) <- header
rm(header)
mri$sex <-ifelse(mri$sex=="F", 0,ifelse(mri$sex=="M",1,NA_real_)) # Dummy coding child's sex

#### ABCD MRI Info ####
header <- read.table("abcd_mri01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
mriID    <- read.table("abcd_mri01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( mriID ) <- header
rm( header )

#### ABCD sMRI Part 2 ####
# sMRI morphometric and image intensity measures (part 2) INTRACRANIAL abcd_smrip201.txt
header    <- read.table("abcd_smrip201.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
smrip201  <- read.table("abcd_smrip201.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( smrip201 ) <- header
rm( header )

#### Freesurfer reconstruction quality control measures ####
header    <- read.table("freesqc01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
freesqc01  <- read.table("freesqc01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( freesqc01 ) <- header
rm( header )

#### ABCD Parent Demographics Survey ####
header <- read.table("pdem02.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
pdem02    <- read.table("pdem02.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( pdem02 ) <- header
rm(header)

#Total Combined Income
#1= Less than $5,000; 2=$5,000 through $11,999; 3=$12,000 through $15,999; 4=$16,000 through $24,999;
#5=$25,000 through $34,999; 6=$35,000 through $49,999; 7=$50,000 through $74,999; 8= $75,000 through $99,999;
#9=$100,000 through $199,999; 10=$200,000 and greater. 999 = Don't know
pdem02$demo_comb_income_v2 <- car::recode(pdem02$demo_comb_income_v2,"c(777,999)=NA")# Combined income

# Caregiver education: demo_prnt_ed_v2
# Partner education:   demo_prtnr_ed_v2
#0 = Never attended/Kindergarten only; 1 = 1st grade; 2 = 2nd grade; 3 = 3rd grade;
#4 = 4th grade; 5 = 5th grade; 6 = 6th grade; 7 = 7th grade; 8 = 8th grade;
#9 = 9th grade; 10 = 10th grade; 11 = 11th grade; 12 = 12th grade; 13 = High school; 14 = GED or equivalent
#15 = Some college; 16 = Associate degree: Occupational; 17 = Associate degree: Academic;
#18 = Bachelor's degree (ex. BA); 19 = Master's degree (ex. MA); 20 = Professional School degree (ex. MD)
#21 = Doctoral degree (ex. PhD); 777 = NA
pdem02$demo_prnt_ed_v2   <- car::recode(pdem02$demo_prnt_ed_v2,"c(777,999)=NA")   #Caregiver education
pdem02$demo_prtnr_ed_v2  <- car::recode(pdem02$demo_prtnr_ed_v2,"c(777,999)=NA") #Partner education
# if partner education is missing, use caregiver education
pdem02$demo_caregiver_ed <- rowMeans(cbind(pdem02$demo_prtnr_ed_v2, pdem02$demo_prnt_ed_v2))
pdem02$demo_caregiver_ed <-  ifelse(is.na(pdem02$demo_caregiver_ed),pdem02$demo_prnt_ed_v2, pdem02$demo_caregiver_ed)

# What race do you consider the child to be
# Recoding to White vs non-white
pdem02$demo_race <- ifelse(
    pdem02 %>% dplyr::select(demo_race_a_p___11:demo_race_a_p___25) %>% rowSums(na.rm = F)==0,0,1
    ) 

# Do you consider the child Hispanic/Latino/Latina
#0='Latinx',1 =non-Latinx
pdem02$demo_ethnicity <- car::recode(pdem02$demo_ethn_v2, "1=0; 2 = 1; 999=NA; 777=NA") 

pdem02$demo_race_ethnicity <- NA
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___10==1] <- 'White'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___11==1] <- 'Black'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___12==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___13==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___14==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___15==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___16==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___17==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___18==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___19==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___20==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___21==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___22==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___23==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_ethn_v2==1] <- "Hispanic"
pdem02$demo_race_ethnicity <- factor(pdem02$demo_race_ethnicity)
pdem02$demo_race_ethnicity <- factor(pdem02$demo_race_ethnicity, 
                                     levels = c("White", "Hispanic", "Black", "Asian", "Other"))
#Other(e.g. Native American, Alaska Native, Pacific Islander)

#demo_prnt_marital_v2
#Are you now married, widowed, divorced, separated, never married or living with a partner? 
# 1 = Married Casado(a) 
# 2 = Widowed Viudo(a)
# 3 = Divorced Divorciado(a)
# 4 = Separated Separado(a)
# 5 = Never married Nunca me he casado 
# 6 = Living with partner
# Recoding for with x without partner
pdem02$demo_prnt_marital <- car::recode(pdem02$demo_prnt_marital_v2,"c(1,6)=1; c(2,3,4,5)=0;777=NA")

#### ABCD ACS Post Stratification Weights ####
header <- read.table("acspsw03.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
acspsw03    <- read.table("acspsw03.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( acspsw03 ) <- header
rm(header)

#### Parent Diagnostic Interview (KSADS-5)####
header <- read.table("dibf01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
dibf01    <- read.table("dibf01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( dibf01 ) <- header
rm(header)
dibf01$Adopted_child <-  ifelse(dibf01$kbi_p_c_guard___5==1|dibf01$kbi_p_c_guard___6==1|dibf01$kbi_p_c_guard___7==1,1,0)

#### ABCD Parent Child Behavior Checklist Scores Aseba (CBCL) ####
header <- read.table("abcd_cbcls01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
cbcl   <- read.table("abcd_cbcls01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( cbcl ) <- header
rm(header)
cbcl <- cbcl %>% dplyr::filter(eventname=='baseline_year_1_arm_1')

#### ABCD Parent Family Environment Scale-Family Conflict Subscale Modified from PhenX (FES) ####
header <- read.table("fes02.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
fes02    <- read.table("fes02.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( fes02 ) <- header
rm(header)
fes02 <- fes02 %>% filter(eventname=='baseline_year_1_arm_1')

fes02$fes_fam_env_score      <-
    fes02 %>% dplyr::select(
        fam_enviro1_p ,
        fam_enviro2r_p ,
        fam_enviro3_p ,
        fam_enviro4r_p ,
        fam_enviro5_p ,
        fam_enviro6_p ,
        fam_enviro7r_p ,
        fam_enviro8_p,
        fam_enviro9r_p
    )  %>% rowSums() # sscep01$fes_p_ss_fc same as fes02$fes_fam_env_score

#### ABCD Sum Scores Culture & Environment Parent ####
# Culture and environment summary scores - parent surveys
header  <- read.table("abcd_sscep01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
sscep01 <- read.table("abcd_sscep01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( sscep01 ) <- header
rm(header)
sscep01 <- sscep01 %>% filter(eventname=='baseline_year_1_arm_1')

#### ABCD Parent Screen Time Survey (STQ) ####
# Screen time utilization - parent
header  <- read.table("stq01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
stq01   <- read.table("stq01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( stq01 ) <- header
rm(header)
stq01 <- stq01 %>% filter(eventname=="baseline_year_1_arm_1")

stq01$Screentime_week    <- stq01$screentime1_p_hours*60 + stq01$screentime1_p_minutes
stq01$Screentime_weekend <- stq01$screentime2_p_hours*60 + stq01$screentime2_p_minutes
stq01$Average_Screentime <- rowMeans(stq01[,c("Screentime_week","Screentime_weekend")],na.rm = F)/60
stq01$Average_Screentime <- ifelse(
  stq01$Average_Screentime > quantile(stq01$Average_Screentime, probs = c(.995), na.rm = T),
  quantile(stq01$Average_Screentime, probs = c(.995), na.rm = T), stq01$Average_Screentime
  ) # winsorizing outliers to 99.5 percentile

#### ABCD Parent Adult Self Report Scores Aseba (ASR)
header  <- read.table("abcd_asrs01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
asrs01   <- read.table("abcd_asrs01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( asrs01 ) <- header
rm(header)

#### ABCD Youth Edinburgh Handedness Inventory Short Form #### abcd_ehis01
header      <- read.table("abcd_ehis01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
abcd_ehis01 <- read.table("abcd_ehis01.txt", skip = 2, header = FALSE,stringsAsFactors = FALSE)
colnames(abcd_ehis01) <- header
rm(header)
abcd_ehis01$Handedness <- car::recode(abcd_ehis01$ehi_y_ss_scoreb,"1='1.right' ; 2='2.left'; 3='3.mixed'")
  
#### Trauma exposure ####
header  <- read.table("abcd_ptsd01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
ptsd01 <- read.table("abcd_ptsd01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( ptsd01 ) <- header
rm(header)
ptsd01$Exp_trauma <- ifelse(
    ptsd01 %>% dplyr::select(ksads_ptsd_raw_754_p:ksads_ptsd_raw_770_p) %>% rowSums(na.rm = F) >0, 1, 0
    )

####    ABCD Youth NIH TB Summary Scores ####
header  <- read.table("abcd_tbss01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
tbss01  <- read.table("abcd_tbss01.txt", skip = 2, header = F,stringsAsFactors = FALSE)
colnames( tbss01 ) <- header
rm(header)

#### ABCD Developmental History Questionnaire ####
header  <- read.table("dhx01.txt", nrows = 1, header = FALSE,stringsAsFactors = FALSE)
dhx01   <- read.table("dhx01.txt",skip = 2,header = F,stringsAsFactors = FALSE,fill = TRUE )
colnames( dhx01 ) <- header
rm(header)

# Unplanned Pregnancy
dhx01$devhx_6_p <- ifelse(dhx01$devhx_6_p==999,NA, dhx01$devhx_6_p ) # 1 = planned pregnancy
dhx01$devhx_6_p <- car::recode(dhx01$devhx_6_p, "1=0;0=1") # 1 = planned pregnancy
#Rec to 1 = unplanned pregnancy

dhx01$devhx_5_p <- ifelse(dhx01$devhx_5_p==999,NA, dhx01$devhx_5_p ) # Does your child have a twin? 1 =yes

# C-section 
dhx01$devhx_13_3_p <- ifelse(dhx01$devhx_13_3_p==999,NA, dhx01$devhx_13_3_p ) # 1 = Yes; 0 = No; 999 = Don't know

# Gestational weeks
# devhx_12a_p   Was the child born prematurely? 1 = Yes ; 0 = No
# devhx_12_p    About how many weeks premature was the child when they were born?
#1 = 1; 2 = 2; 3 = 3; 4 = 4; 5 = 5; 6 = 6; 7 = 7; 8 = 8; 9 = 9; 10 = 10; 11 = 11; 12 = 12;
#13 = Greater than 12/; 999 = Don't know
#example: full term = 40 weeks, born at 36 weeks = 4 weeks premature, born at 32 weeks = 8 weeks premature

#dhx01$devhx_12a_p %>% propfunc()
dhx01$devhx_12a_p <- car::recode(dhx01$devhx_12a_p, "999=NA")

dhx01$GestationalAge <- 40 - ifelse(is.na(dhx01$devhx_12_p) & dhx01$devhx_12a_p == 0,0,  dhx01$devhx_12_p )
dhx01$A_Burden_Gestational_Age   <- ifelse(dhx01$GestationalAge<37, 1,0)
dhx01$A_Burden_Gestational_Age_2   <- ifelse(dhx01$devhx_12_p==999 & dhx01$devhx_12a_p==1,NA,dhx01$A_Burden_Gestational_Age)
# Participants who answered yes to "preterm"(1), but did not provide a number of weeks (999), 
# are currently in the A_Burden_Gestational_Age==1 group. They were dropped from main analysis

dhx01$birth_weight_oz <- ifelse(is.na(dhx01$birth_weight_oz), 0, dhx01$birth_weight_oz)
dhx01$birth_weight_g <- dhx01$birth_weight_lbs *453.592 + dhx01$birth_weight_oz  *28.3495

# Tobacco
dhx01$devhx_8_tobacco <- ifelse(dhx01$devhx_8_tobacco==999,NA, dhx01$devhx_8_tobacco)
#propfunc(dhx01$devhx_8_tobacco)

dhx01$devhx_9_tobacco <- ifelse(dhx01$devhx_9_tobacco==999,NA, dhx01$devhx_9_tobacco)
#propfunc(dhx01$devhx_9_tobacco)

#Alcohol
dhx01$devhx_8_alcohol <- ifelse(dhx01$devhx_8_alcohol==999,NA, dhx01$devhx_8_alcohol)
#dhx01$devhx_8_alcohol %>% propfunc()

dhx01$devhx_9_alcohol <- ifelse(dhx01$devhx_9_alcohol==999,NA, dhx01$devhx_9_alcohol)
#dhx01$devhx_9_alcohol %>% propfunc()

#Marijuana
dhx01$devhx_8_marijuana <- ifelse(dhx01$devhx_8_marijuana==999,NA, dhx01$devhx_8_marijuana)
#dhx01$devhx_8_marijuana%>% propfunc()

dhx01$devhx_9_marijuana <- ifelse(dhx01$devhx_9_marijuana==999,NA, dhx01$devhx_9_marijuana)
#dhx01$devhx_9_marijuana %>% propfunc()

# Pregnancy Complications
# devhx_10a3_p  Severe nausea and vomiting extending past the 6th month or accompanied by weight loss
# devhx_10b3_p  Heavy bleeding requiring bed rest or special treatment
# devhx_10c3_p  Pre-eclampsia, eclampsia, or toxemia? 
# devhx_10d3_p  Severe gall bladder attack? 
# devhx_10e3_p  Persistent proteinuria
# devhx_10f3_p  Rubella during first 3 months of pregnancy
# devhx_10g3_p  Severe anemia
# devhx_10h3_p  Urinary tract infection
# devhx_10i3_p  Pregnancy-related diabetes
# devhx_10j3_p  Pregnancy-related high blood pressure 
# devhx_10k3_p  Previa, abruptio, other problems with placenta
# devhx_10l3_p  Accident or injury requiring medical care
# devhx_10m3_p  Any other conditions requiring medical care

dhx01 <- dhx01 %>%
    dplyr::mutate_at(dplyr::vars(devhx_10a3_p:devhx_10m3_p), ~car::recode(.,"999=NA")) %>%
    dplyr::mutate( A_Burden_Pregnan_Complications = ifelse(rowSums(dplyr::across(devhx_10a3_p:devhx_10m3_p),na.rm = T)> 0,1,0))

# Birth Complications
#devhx_14a3_p Blue at birth
#devhx_14b3_p Slow heart beat
#devhx_14c3_p Did not breathe at first
#devhx_14d3_p Convulsions
#devhx_14e3_p Jaundice needing treatment
#devhx_14f3_p Required oxygen
#devhx_14g_p  Required blood transfusion
#devhx_14h3_p Rh incompatibility 

dhx01 <- dhx01 %>%
    dplyr::mutate_at(dplyr::vars(devhx_14a3_p:devhx_14h3_p), ~car::recode(.,"999=NA")) %>% 
    dplyr::mutate( A_Burden_Birth_Complications = ifelse(rowSums(dplyr::across(devhx_14a3_p:devhx_14h3_p),na.rm = T)>0,1,0))
#dhx01$A_Burden_Birth_Complications %>% propfunc()

#### Birth Weight InterGrowth21

BW_centile <- read.csv("ABCD_birthweight_centiles.csv") %>%
  filter(!is.na(WeightCentile)) %>%
  dplyr::select(Id, WeightCentile) %>%
  data.table::setnames("Id", "subjectkey")
BW_centile$A_index_birth_weight <- ifelse(BW_centile$WeightCentile < 9.999, 1, 0)#| BW_centile$WeightCentile > 90.001

#### Genetic Popstrat ####

popstrat <- readxl::read_excel("ABCD_ALL_SUB_projection_pcs.xlsx", sheet = 1)
colnames(popstrat)[2] <- "subjectkey"

brainvol.gwas <- read.csv("b344_prs.score.csv")
colnames(brainvol.gwas)[c(1,3)] <- c("subjectkey", "brainvol.pgs_0.0001")

#### MRI labels ####
mri.labels       <- read.csv("https://nda.nih.gov/api/datadictionary/v2/datastructure/abcd_smrip101/csv")
mri.labels$Type  <-NA
mri.labels$Type[grep("Cortical volume in mm\\^3 of APARC ROI",mri.labels$ElementDescription)]  <- "Cortical volume"
mri.labels$Type[grep("Cortical thickness in mm of APARC ROI",mri.labels$ElementDescription)]   <- "Cortical thickness"
mri.labels$Type[grep("Cortical area in mm\\^2 of APARC ROI",mri.labels$ElementDescription)]    <- "Cortical area"
mri.labels$Type[grep("Cortical sulcal depth in mm of APARC ROI",mri.labels$ElementDescription)]<- "Sulcal depth"

mri.labels$ElementDescription <- gsub("Cortical volume in mm\\^3 of APARC ROI"  ,"Cortical volume",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical thickness in mm of APARC ROI"   ,"Cortical thickness",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical area in mm\\^2 of APARC ROI"    ,"Cortical area",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical sulcal depth in mm of APARC ROI","Sulcal depth",mri.labels$ElementDescription)

mrisubcortical.labels <- read.csv("https://nda.nih.gov/api/datadictionary/v2/datastructure/abcd_smrip201/csv")
# Filter for Subcortical ROIs 
subROIs <- c("smri_vol_scs_ltventriclelh","smri_vol_scs_crbcortexlh","smri_vol_scs_tplh","smri_vol_scs_caudatelh",
  "smri_vol_scs_putamenlh","smri_vol_scs_pallidumlh","smri_vol_scs_hpuslh","smri_vol_scs_amygdalalh",
  "smri_vol_scs_aal","smri_vol_scs_vedclh",
  "smri_vol_scs_ltventriclerh", "smri_vol_scs_crbcortexrh","smri_vol_scs_tprh","smri_vol_scs_caudaterh",
  "smri_vol_scs_putamenrh","smri_vol_scs_pallidumrh", "smri_vol_scs_hpusrh", "smri_vol_scs_amygdalarh",
  "smri_vol_scs_aar","smri_vol_scs_vedcrh")
mrisubcortical.labels <- mrisubcortical.labels[mrisubcortical.labels$ElementName %in% subROIs,]
#### Study Site ID ####
abcd_site <-  readRDS("DEAP-data-download.rds")

Merging datasets

abcd  <- left_join(mri,  pdem02,by='subjectkey', suffix=c('', '.pdem02') )
abcd  <- left_join(abcd, mriID %>% select(subjectkey, mri_info_manufacturer:mri_info_studydate), by="subjectkey")
abcd  <- left_join(abcd, acspsw03[,4:17],by="subjectkey", suffix=c('', '.acspsw03')) # Family identification variables
abcd  <- left_join(abcd, dhx01,by="subjectkey", suffix=c('', '.dhx01')) 
abcd  <- left_join(abcd, asrs01,by="subjectkey", suffix=c('', '.asrs01'))
abcd  <- left_join(abcd, dibf01 %>% select(subjectkey, Adopted_child), by="subjectkey")
abcd  <- left_join(abcd, fes02,by="subjectkey", suffix = c("", ".fes02")) 
abcd  <- left_join(abcd, smrip201,by="subjectkey", suffix = c("", ".smrip201"))
abcd  <- left_join(abcd, cbcl, by="subjectkey", suffix = c("", ".cbcl"))
abcd  <- left_join(abcd, popstrat,by="subjectkey") 
abcd  <- left_join(abcd, abcd_ehis01 %>% select(subjectkey, Handedness), by= "subjectkey" )
abcd  <- left_join(abcd, BW_centile, by= "subjectkey" )
abcd  <- left_join(abcd,tbss01[,c("subjectkey","nihtbx_totalcomp_fc",'nihtbx_cryst_fc' ,'nihtbx_fluidcomp_fc')],by= "subjectkey" )

abcd  <- left_join(abcd, brainvol.gwas[,c("subjectkey", "brainvol.pgs_0.0001")],by= "subjectkey") %>%
  as.data.frame()

abcd$fsqc_qc             <- freesqc01$fsqc_qc[match(abcd$subjectkey, freesqc01$subjectkey)]
abcd$abcd_site           <- abcd_site$abcd_site[match(abcd$src_subject_id, abcd_site$src_subject_id)]
abcd$neighborhood_safety <- sscep01$nsc_p_ss_mean_3_items[match(abcd$subjectkey, sscep01$subjectkey)]
abcd$Average_Screentime  <- stq01$Average_Screentime[match(abcd$subjectkey, stq01$subjectkey)]
abcd$Exp_trauma          <- ptsd01$Exp_trauma[match(abcd$subjectkey, ptsd01$subjectkey)]


# Covariates Labels####
covars.x <- Hmisc::Cs(
    interview_age      , # child’s age
    demo_comb_income_v2, # Combined income
    demo_caregiver_ed  , # Caregiver education (averaged across both primary caregivers)
    fes_fam_env_score  , # Family Conflict Subscale of the Family Environment Scale;
    devhx_3_p          , # Maternal age at birth
    asr_scr_totprob_t  , # Parent Total Problems
    neighborhood_safety,
    Average_Screentime,
    PC1,
    PC2,
    PC3,
    PC4,
    PC5,
    PC6,
    PC7,
    PC8,
    PC9,
    PC10,
    brainvol.pgs_0.0001)

# Computing Prenatal Score
abcd$A_Prenatal_Burden_Score <- abcd %>%
    dplyr::select(devhx_6_p,        # Unplanned pregnancy
           devhx_13_3_p,            # C-section 
           A_Burden_Gestational_Age,
           A_index_birth_weight,
           devhx_8_tobacco,
           devhx_8_alcohol,
           devhx_8_marijuana,
           A_Burden_Pregnan_Complications,
           A_Burden_Birth_Complications) %>% rowSums()


# Filtering Neuroimage QC
abcd      <- abcd[abcd$fsqc_qc==1,] # QC score  0;1 0 = reject; 1 = accept
# Filtering Complete cases
abcd      <-  abcd[complete.cases(abcd[,c("A_Prenatal_Burden_Score",covars.x)]),]

#Split by sex
abcd.f    <- abcd %>% filter(sex==0)
abcd.m    <- abcd %>% filter(sex==1)

ABCD Sample Description

A total of 7314 participants (52.1% males) were considered for the current work based on the availability of demographics, psychosocial, environmental, genetic and of high-quality neuroimaging data (Supplemental eMethods). Ethics approval for the ABCD study was provided by the central Institutional Review Board (IRB) at the University of California, San Diego, and in some instances by local IRB approval. Caregivers provided written informed consent after the procedures had been fully explained, and children assented before participation in the study.

Table 1 - Participant characteristics

Preparing descriptives functions

mean.describe2 <- function(x, group){
    
    group.name <- names( table(group))    
    
    g1 <- 
        paste0(
            apply(x[group== group.name[1],]  , 2, mean,na.rm=T) %>% round(2)," (",
            apply(x[group== group.name[1],], 2, sd) %>% round(2), ")")
    g2 <- 
        paste0(
            apply(x[group== group.name[2],], 2, mean,na.rm=T) %>% round(2)," (",
            apply(x[group== group.name[2],], 2, sd) %>% round(2), ")")
    
    descritivas <- data.frame(cbind(g1,g2))
    rownames(descritivas) <- names(x)
    colnames(descritivas) <- group.name
    return(descritivas)
}


propfunc <- 
function(x){
    
    require(dplyr)
    
    if(is.null(ncol(x))){
        proportions <- cbind(table(x), round(100*prop.table(table(x)),digits = 2) ) %>% as.data.frame()
        proportions <- cbind(rownames(proportions),proportions)
        proportions <- proportions
        colnames(proportions) <- c("Var", "N", "%")
        return(proportions)
    }else{
    
    propfunc.x <- function(x){
    proportions <- cbind(table(x), round(100*prop.table(table(x)),digits = 2) ) %>% as.data.frame()
    proportions <- cbind(rownames(proportions),proportions)
    colnames(proportions) <- c("Var", "N", "%")
    
    return(proportions)
    }

    x <- apply(x, 2, propfunc.x)
    x <- data.table::rbindlist(x,idcol = T) %>% as.data.frame()
    colnames(x) <- c("Variables", 'Values', "N", "%")
    x$Variables <- ifelse(duplicated(x$Variables), '',x$Variables)
    return(x)}
}

Run descriptive analysis by sex

num.descriptives <- mean.describe2(x = abcd[,
                        c("A_Prenatal_Burden_Score",
                          'interview_age'      ,# child’s age
                          'demo_comb_income_v2',# Combined income
                          'demo_caregiver_ed'  ,# Averaged caregivers education
                          'fes_fam_env_score'  ,# Family Conflict Subscale - Family Environment Scale
                          'devhx_3_p'          ,# Maternal age at birth
                          'asr_scr_totprob_t'  ,# Parent Total Problems - ASEBA
                          'neighborhood_safety',
                          'Average_Screentime',
                          "brainvol.pgs_0.0001")],
               group = abcd$sex
                )

rownames(num.descriptives) <- c("Prenatal Adverse Exposure Score, Mean (SD)",
                                "Age in months, Mean (SD)",
                                "Family combined income, Mean (SD)",
                                "Averaged carigiver's education, Mean (SD)",
                                "Family conflict subscale, Mean (SD)",
                                "Maternal age at birth, Mean (SD)",
                                "Parent Total Problems - ASEBA, Mean (SD)",
                                "Neighborhood safety, Mean (SD)",
                                "Average screen time use, Mean (SD)",
                                "Brain volume polygenic score, Mean (SD)"
                                )

colnames(num.descriptives) <- c("Females", 'Males')

# Running t. tests
t.values  <- c()
p.values <- c()
iID <- 0
for( i in c("A_Prenatal_Burden_Score",
            'interview_age'      ,# child’s age
            'demo_comb_income_v2',# Combined income
            'demo_caregiver_ed'  ,# Averaged caregivers education
            'fes_fam_env_score'  ,# Family Conflict Subscale - Family Environment Scale
            'devhx_3_p'          ,# Maternal age at birth
            'asr_scr_totprob_t'  ,# Parent Total Problems - ASEBA
            'neighborhood_safety',
            'Average_Screentime',
            'brainvol.pgs_0.0001')){
  iID <- iID+1
  p.values[iID] <- t.test(abcd[,i] ~ abcd$sex, var.equal=T)$p.value
  t.values[iID] <- t.test(abcd[,i] ~ abcd$sex, var.equal=T)$statistic
}

num.descriptives$stat.value <- t.values
num.descriptives$p.value <- p.values

prop.descriptives.race              <- by( abcd[,c('demo_race_ethnicity')],abcd$sex,propfunc )
prop.descriptives.race              <- cbind(prop.descriptives.race[[1]],prop.descriptives.race[[2]]) #List to matrix
prop.descriptives.race              <- prop.descriptives.race[,c(2:3,5:6)]# Selecting variables, values and descriptives
prop.descriptives.race$Females      <- paste0(prop.descriptives.race$N, " (", prop.descriptives.race$`%`,")")#
prop.descriptives.race$Males        <- paste0(prop.descriptives.race$N.1, " (", prop.descriptives.race$`%.1`,")")
prop.descriptives.race              <- rbind(NA,prop.descriptives.race)
rownames(prop.descriptives.race)[1] <- "Ethnicity, N (%)"
prop.descriptives.race              <- prop.descriptives.race[,c("Females", 'Males')]
prop.descriptives.race$stat.value   <- NA
prop.descriptives.race$p.value      <- NA
prop.descriptives.race$stat.value[1]<- chisq.test(abcd$demo_race_ethnicity, abcd$sex)$statistic
prop.descriptives.race$p.value[1]   <- chisq.test(abcd$demo_race_ethnicity, abcd$sex)$p.value 

prop.descriptives.site              <- by( abcd[,c('abcd_site')],abcd$sex,propfunc )
prop.descriptives.site              <- cbind(prop.descriptives.site[[1]],prop.descriptives.site[[2]]) #List to matrix
prop.descriptives.site              <- prop.descriptives.site[,c(2:3,5:6)]# Selecting variables, values and descriptives
prop.descriptives.site$Females      <- paste0(prop.descriptives.site$N, " (", prop.descriptives.site$`%`,")")#
prop.descriptives.site$Males        <- paste0(prop.descriptives.site$N.1, " (", prop.descriptives.site$`%.1`,")")
rownames(prop.descriptives.site)[1] <- "Study site, N (%)"
prop.descriptives.site              <- prop.descriptives.site[,c("Females", 'Males')]
prop.descriptives.site[1,]          <- NA
prop.descriptives.site$stat.value   <- NA
prop.descriptives.site$p.value      <- NA
prop.descriptives.site$stat.value[1]<- chisq.test(abcd$abcd_site, abcd$sex)$statistic 
prop.descriptives.site$p.value[1]   <- chisq.test(abcd$abcd_site, abcd$sex)$p.value 


# Merging Descriptives
participants.descriptives      <- rbind(num.descriptives,prop.descriptives.race,prop.descriptives.site)

Creating Table 1

kable(participants.descriptives, digits = 3, caption = "Participants characteristics") %>%
  kable_styling(position = "center")
Participants characteristics
Females Males stat.value p.value
Prenatal Adverse Exposure Score, Mean (SD) 2.17 (1.52) 2.19 (1.52) -0.587 0.557
Age in months, Mean (SD) 118.87 (7.52) 119.12 (7.57) -1.409 0.159
Family combined income, Mean (SD) 7.42 (2.29) 7.42 (2.3) 0.123 0.902
Averaged carigiver’s education, Mean (SD) 16.73 (2.4) 16.67 (2.45) 0.973 0.331
Family conflict subscale, Mean (SD) 2.41 (1.93) 2.61 (1.98) -4.456 0.000
Maternal age at birth, Mean (SD) 29.62 (6.05) 29.79 (5.97) -1.205 0.228
Parent Total Problems - ASEBA, Mean (SD) 42.66 (9.95) 43.23 (10.15) -2.411 0.016
Neighborhood safety, Mean (SD) 3.94 (0.95) 3.99 (0.94) -2.375 0.018
Average screen time use, Mean (SD) 3.03 (2.07) 3.31 (2.18) -5.632 0.000
Brain volume polygenic score, Mean (SD) -0.27 (0.16) -0.27 (0.16) -1.193 0.233
Ethnicity, N (%) 8.359 0.079
White 2052 (59.05) 2290 (60.58)
Hispanic 630 (18.13) 701 (18.54)
Black 550 (15.83) 518 (13.7)
Asian 119 (3.42) 149 (3.94)
Other 124 (3.57) 122 (3.23)
Study site, N (%) 25.045 0.295
site01 107 (3.05) 113 (2.97)
site02 183 (5.22) 231 (6.07)
site03 166 (4.73) 195 (5.12)
site04 199 (5.68) 194 (5.09)
site05 116 (3.31) 120 (3.15)
site06 204 (5.82) 216 (5.67)
site07 91 (2.6) 114 (2.99)
site08 81 (2.31) 89 (2.34)
site09 131 (3.74) 131 (3.44)
site10 196 (5.59) 201 (5.28)
site11 151 (4.31) 136 (3.57)
site12 164 (4.68) 155 (4.07)
site13 189 (5.39) 200 (5.25)
site14 205 (5.85) 227 (5.96)
site15 118 (3.37) 140 (3.68)
site16 340 (9.7) 443 (11.63)
site17 195 (5.56) 180 (4.73)
site18 98 (2.8) 122 (3.2)
site19 174 (4.96) 174 (4.57)
site20 228 (6.5) 223 (5.86)
site21 160 (4.56) 196 (5.15)
site22 4 (0.11) 5 (0.13)

Preparing Variables and Labels

# Standardizing Numerical Predictors
for( i in Hmisc::Cs(
    interview_age      , # child’s age
    demo_comb_income_v2, # Combined income
    demo_caregiver_ed  , # Caregiver education (averaged across both primary caregivers)
    fes_fam_env_score  , # Family Conflict Subscale ofthe Family Environment Scale;
    devhx_3_p          , # Maternal age at birth
    asr_scr_totprob_t  , # Parent Total Problems
    neighborhood_safety,
    Average_Screentime,
    PC1,
    PC2,
    PC3,
    PC4,
    PC5,
    PC6,
    PC7,
    PC8,
    PC9,
    PC10,
    brainvol.pgs_0.0001,
    smri_vol_scs_intracranialv, 
    smri_thick_cdk_mean,       # Mean Cortical thickness 
    smri_area_cdk_total,       # Total whole brain cortical area in mm^2
    smri_sulc_cdk_mean,         # Mean Sulcal Depth
    A_Prenatal_Burden_Score
)){
  
  abcd.f[,paste0(i,'_z')] <- as.numeric(scale(abcd.f[,i]))
  abcd.m[,paste0(i,'_z')] <- as.numeric(scale(abcd.m[,i]))
}

covars.x <- Hmisc::Cs(
    interview_age_z      , # child’s age
    demo_comb_income_v2_z, # Combined income
    demo_caregiver_ed_z  , # Caregiver education (averaged across both primary caregivers)
    fes_fam_env_score_z  , # Family Conflict Subscale ofthe Family Environment Scale;
    demo_prnt_marital    , # Presence or absence of a partner for the primary caregiver;
    devhx_3_p_z          , # Maternal age at birth
    asr_scr_totprob_t_z  , # Parent Total Problems
    neighborhood_safety_z,
    Average_Screentime_z,
    Exp_trauma,          #Child’s exposure to zero vs. 1 significant trauma
    PC1_z,
    PC2_z,
    PC3_z,
    PC4_z,
    PC5_z,
    PC6_z,
    PC7_z,
    PC8_z,
    PC9_z,
    PC10_z,
    brainvol.pgs_0.0001_z,
    Handedness
    )

covars.x.labels <- data.frame(covars.x=c("A_Prenatal_Burden_Score8.imp",covars.x),
                              labels= c("Prenatal Adversity",
                                        "Child’s age",
                                        "Combined income",
                                        "Caregiver education",
                                        "Family Conflict",
                                        "Relationship status",
                                        "Maternal age",
                                        "Parent Total Problems",
                                        "Neighborhood Safety",
                                        "Screen Time",
                                        "Exposure to Trauma",
                                        "PC1",
                                        "PC2",
                                        "PC3",
                                        "PC4",
                                        "PC5",
                                        "PC6",
                                        "PC7",
                                        "PC8",
                                        "PC9",
                                        "PC10",
                                        "Brain volume genetic score",
                                        "Handedness"
                                        ))

Figures 1 and 2

Define LME function

LME_loop <-
  function(predictors,
           outcomes,
           covars = NULL,
           data,
           predictorsLab = NULL,
           outcomesLab = NULL,
           ROI=NULL,
           print.model = NULL,
           dig = NULL,
           Scale=NULL,
           is.log10 = FALSE
  ){
    require(dplyr)
    
    interac_names   <- c("MainEffect_ID",
                         "Outcome",
                         "Label",
                         'ElementDescription',
                         "Predictor",
                         "Beta_Predictor",
                         'Std.error',
                         "Sample_size",
                         "R2",
                         "p_value_Predictor"
                         )
    
    
    #Labels
    
    if(!is.null(predictorsLab)){
        
        predictors <-  predictors
        predictorsLabels <- data.frame(vars = predictors,
                                       names= predictorsLab
                                       ,stringsAsFactors = F)
    }
    
    if(!is.null(outcomesLab)){
        
        outcomes <-  outcomes
        outcomesLabels <- data.frame(vars = outcomes,
                                     names= outcomesLab,
                                     ROI=ROI,
                                     stringsAsFactors = F)
    }
    #Results 
    main_results <- matrix(NA, nrow = length(predictors)*length(outcomes), ncol = 10) %>% as.data.frame()
    colnames(main_results) <- interac_names
    
    #Preparing data
    
    if (is.null(covars)) {
        lm.formula <- "outcome.y ~ predictor.x"
    } else{
        lm.formula <-
            paste("outcome.y ~ predictor.x + ", paste(covars, collapse = "+"))
    }
    if(is.log10==TRUE){lm.formula <- gsub("outcome.y", "log10(outcome.y)", lm.formula)}
    if(isTRUE(Scale))   {lm.formula <- gsub("outcome.y", "scale(outcome.y)", lm.formula)}
    
    
    iID <- 0
    for(i in outcomes){
        for(j in predictors){
            
            iID <- iID+1
            data$outcome.y    <- data[,i]  
            data$predictor.x  <- data[,j]
            
            if (is.null(covars)) {
              data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x")] ), ]#covars
            } else{
              data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x", covars)] ), ]#covars
            }
            
            main_results$Sample_size   [iID] <- nrow(data1)
            main_results$MainEffect_ID [iID] <- iID
            main_results$Outcome       [iID] <- i
            
            if(!is.null(outcomesLab)){
                main_results$Label              [iID] <- outcomesLabels[outcomesLabels$vars== i,"names"]
                main_results$ElementDescription [iID] <- outcomesLabels[outcomesLabels$vars== i,"ROI"]
            }
            
            if(!is.null(predictorsLab)){
                main_results$Predictor [iID] <- predictorsLabels[predictorsLabels$vars== j,"names"]
            }else{main_results$Predictor  [iID] <- j}
            
            
            if(nrow(data1)<15)next
            
            formula.random="~(1|mri_info_deviceserialnumber/rel_family_id)"
            
            model.loop = gamm4::gamm4(
              as.formula(lm.formula),
              random = as.formula(formula.random),
              weights = NULL,
              data = data1
            )

            main_results$Beta_Predictor      [iID] <- summary(model.loop$gam)$p.table[2,1] 
            main_results$Std.error           [iID] <- summary(model.loop$gam)$p.table[2,2] 
            main_results$p_value_Predictor   [iID] <- summary(model.loop$gam)$p.table[2,4] 
            main_results$R2                  [iID] <- summary(model.loop$gam)$r.sq %>% round(3)
            
            if (!is.null(print.model)) {
                print(i)
                print(j)
                print(summary(model.loop$gam)$p.table)
        }
        
    }
    
    }
    
    main_results <<- main_results
}

Figure 1

Cortical Volume - Obtaining FDR-significant Betas for plotting

Running analysis

CVol_outcomes           <- mri.labels[mri.labels$Type %in% "Cortical volume", "ElementName"]
CvolROIs                <- mri.labels[mri.labels$Type %in% "Cortical volume", "ElementDescription"]
CvolMRI_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical volume","Aliases"]

CortVolResults.F <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CVol_outcomes,
    outcomesLab = CvolMRI_outcomes_Labels,
    ROI = CvolROIs,
    Scale = T,
    covars = c(covars.x, "smri_vol_scs_intracranialv"),
    data = abcd.f
  )
CortVolResults.F$FDR <- p.adjust(CortVolResults.F$p_value_Predictor,"fdr")

CortVolResults.M <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CVol_outcomes,
    outcomesLab = CvolMRI_outcomes_Labels,
    ROI = CvolROIs,
    Scale = T,
    covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
    data = abcd.m
  )

CortVolResults.M$FDR <- p.adjust(CortVolResults.M$p_value_Predictor,"fdr")

Cortical Volume Girls

kable(CortVolResults.F[CortVolResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Cortical Volume Significant Regions - Females',
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Cortical Volume Significant Regions - Females
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.061 0.017 3371 0.139 0.000 0.014
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.054 0.016 3371 0.287 0.001 0.014
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.051 0.015 3371 0.009 0.001 0.014
smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.046 0.015 3371 0.307 0.002 0.027
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.048 0.016 3371 0.172 0.003 0.034
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.051 0.014 3371 0.420 0.000 0.014

Cortical Volume Boys

kable(CortVolResults.M[CortVolResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = "Cortical Volume Significant Regions - Males",
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Cortical Volume Significant Regions - Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.045 0.015 3644 0.375 0.002 0.039
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.044 0.014 3644 0.411 0.002 0.039
smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.048 0.016 3644 0.293 0.002 0.039
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.068 0.018 3644 0.076 0.000 0.009

Subcortical Volume - Obtaining FDR-significant Betas for plotting

Running analysis

SubCortical_outcomes        <- mrisubcortical.labels$ElementName
SubCortical_outcomes_Labels <- mrisubcortical.labels$Aliases
SubROIs                     <- mrisubcortical.labels$ElementDescription
SubROIs                     <- gsub("Volume in mm\\^3 of ASEG ROI ", "Subcortical volume ", SubROIs)


SubCortVolResults.F <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score",
    outcomes =  SubCortical_outcomes,
    outcomesLab = SubCortical_outcomes_Labels,
    ROI = SubROIs,
    Scale = T,
    covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
    data = abcd.f
  )
SubCortVolResults.F$FDR <- p.adjust(SubCortVolResults.F$p_value_Predictor,"fdr")

SubCortVolResults.M <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score",
    outcomes =  SubCortical_outcomes,
    outcomesLab = SubCortical_outcomes_Labels,
    ROI = SubROIs,
    Scale = T,
    covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
    data = abcd.m
  )

SubCortVolResults.M$FDR <- p.adjust(SubCortVolResults.M$p_value_Predictor,"fdr")

Subcortical Volume Girls

kable(SubCortVolResults.F[SubCortVolResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = "Subcortical Volume Significant Regions - Females", 
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Subcortical Volume Significant Regions - Females
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_vol_scs_tprh Subcortical volume right-thalamus-proper A_Prenatal_Burden_Score -0.034 0.009 3371 0.461 0 0.006

Subcortical Volume Boys

kable(SubCortVolResults.M[SubCortVolResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Subcortical Volume Significant Regions - Males',
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Subcortical Volume Significant Regions - Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR

Cortical Thickness - Obtaining FDR-significant Betas for plotting

Running analysis

CortThick_outcomes      <- mri.labels[mri.labels$Type %in% "Cortical thickness", "ElementName"]
CortThickROIs           <- mri.labels[mri.labels$Type %in% "Cortical thickness", "ElementDescription"]
CortThick_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical thickness","Aliases"]

CortThickResults.F <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CortThick_outcomes,
    outcomesLab = CortThick_outcomes_Labels,
    ROI = CortThickROIs,
    Scale = T,
    covars = c(covars.x, 'smri_thick_cdk_mean_z'),
    data = abcd.f
  )
CortThickResults.F$FDR <- p.adjust(CortThickResults.F$p_value_Predictor,"fdr")

CortThickResults.M <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CortThick_outcomes,
    outcomesLab = CortThick_outcomes_Labels,
    ROI = CortThickROIs,
    covars = c(covars.x, 'smri_thick_cdk_mean_z'),
    Scale = T,
    data = abcd.m
  )

CortThickResults.M$FDR <- p.adjust(CortThickResults.M$p_value_Predictor,"fdr")

Cortical Thickness Girls

kable(CortThickResults.F[CortThickResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Cortical Thickness Significant Regions - Females',
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Cortical Thickness Significant Regions - Females
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.054 0.016 3371 0.300 0.001 0.010
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.068 0.014 3371 0.403 0.000 0.000
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.062 0.016 3371 0.051 0.000 0.004
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.037 0.013 3371 0.508 0.005 0.049
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.065 0.017 3371 0.161 0.000 0.004
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.054 0.016 3371 0.103 0.001 0.011
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.037 0.012 3371 0.540 0.002 0.019

Cortical Thickness Boys

kable(CortThickResults.M[CortThickResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Cortical Thickness Significant Regions - Males',
      digits = 3,
      row.names = F) %>%
  kableExtra::kable_styling(position = "center")
Cortical Thickness Significant Regions - Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.045 0.014 3644 0.403 0.002 0.035
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.055 0.018 3644 0.056 0.002 0.040
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.079 0.015 3644 0.146 0.000 0.000
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.033 0.012 3644 0.544 0.004 0.046
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.050 0.017 3644 -0.003 0.003 0.045
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.059 0.017 3644 0.160 0.000 0.015

Figure 2

Cortical Area - Obtaining FDR-significant Betas for plotting

Running analysis

CortArea_outcomes      <- mri.labels[mri.labels$Type %in% "Cortical area", "ElementName"]
CortAreaROIs           <- mri.labels[mri.labels$Type %in% "Cortical area", "ElementDescription"]
CortArea_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical area","Aliases"]

CortAreaResults.F <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CortArea_outcomes,
    outcomesLab = CortArea_outcomes_Labels,
    covars = c(covars.x,'smri_area_cdk_total_z'),
    ROI = CortAreaROIs,
    Scale = T,
    data = abcd.f
  )

CortAreaResults.F$FDR <- p.adjust(CortAreaResults.F$p_value_Predictor,"fdr")

CortAreaResults.M <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  CortArea_outcomes,
    outcomesLab = CortArea_outcomes_Labels,
    ROI = CortAreaROIs,
    Scale = T,
    covars = c(covars.x,'smri_area_cdk_total_z'),
    data = abcd.m
  )

CortAreaResults.M$FDR <- p.adjust(CortAreaResults.M$p_value_Predictor,"fdr")

Cortical Area Girls

kable(CortAreaResults.F[CortAreaResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Cortical Area Significant Regions - Females',
      digits = 3, 
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Cortical Area Significant Regions - Females
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.043 0.014 3371 0.462 0.002 0.045
smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.050 0.014 3371 0.406 0.001 0.037
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.050 0.016 3371 0.314 0.001 0.045

Cortical Area Boys

kable(CortAreaResults.M[CortAreaResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = 'Cortical Area Significant Regions - Males',
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Cortical Area Significant Regions - Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.047 0.013 3644 0.502 0 0.024

Sulcal Depth - Obtaining FDR-significant Betas for plotting

Running analysis

SulcalDepth_outcomes      <- mri.labels[mri.labels$Type %in% "Sulcal depth", "ElementName"]
SulcalDepthROIs           <- mri.labels[mri.labels$Type %in% "Sulcal depth", "ElementDescription"]
SulcalDepth_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Sulcal depth","Aliases"]

SulcalDepthResults.F <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  SulcalDepth_outcomes,
    outcomesLab = SulcalDepth_outcomes_Labels,
    ROI = SulcalDepthROIs,
    Scale = T,
    covars = c(covars.x,'smri_sulc_cdk_mean_z'),
    data = abcd.f
  )
SulcalDepthResults.F$FDR <- p.adjust(SulcalDepthResults.F$p_value_Predictor,"fdr")

SulcalDepthResults.M <-
  LME_loop(
    predictors = "A_Prenatal_Burden_Score_z",
    outcomes =  SulcalDepth_outcomes,
    outcomesLab = SulcalDepth_outcomes_Labels,
    covars = c(covars.x,'smri_sulc_cdk_mean_z'),
    ROI = SulcalDepthROIs,
    Scale = T,
    data = abcd.m
  )

SulcalDepthResults.M$FDR <- p.adjust(SulcalDepthResults.M$p_value_Predictor,"fdr")

Sulcal Depth Girls

kable(SulcalDepthResults.F[SulcalDepthResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = "Sulcal Depth Significant Regions - Females",
      digits = 3,
      row.names = F) %>%
  kableExtra::kable_styling(position = "center")
Sulcal Depth Significant Regions - Females
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.060 0.019 3371 0.020 0.001 0.024
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.070 0.019 3371 0.010 0.000 0.013
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.063 0.019 3371 0.026 0.001 0.017
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.062 0.018 3371 0.049 0.001 0.017

Sulcal Depth Boys

kable(SulcalDepthResults.M[SulcalDepthResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
      caption = "Sulcal Depth Siginificant Regions - Males",
      digits = 3,
      row.names = F)%>%
  kableExtra::kable_styling(position = "center")
Sulcal Depth Siginificant Regions - Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.082 0.018 3644 0.026 0.000 0.000
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.071 0.018 3644 0.007 0.000 0.002
smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.050 0.018 3644 0.024 0.006 0.032
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.047 0.018 3644 0.029 0.010 0.042
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.058 0.018 3644 0.013 0.001 0.011
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.050 0.018 3644 0.038 0.005 0.030
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.049 0.018 3644 0.012 0.007 0.035
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.060 0.018 3644 0.029 0.001 0.011
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.059 0.018 3644 0.043 0.001 0.011
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.066 0.018 3644 0.006 0.000 0.005
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.047 0.018 3644 0.031 0.010 0.042
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.054 0.018 3644 0.004 0.003 0.026
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.082 0.018 3644 0.014 0.000 0.000
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.050 0.018 3644 0.034 0.005 0.030
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.051 0.018 3644 0.019 0.005 0.030
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.064 0.017 3644 0.021 0.000 0.003

Figure 3

Figure 3A

Select significant brain region measures

#Selecting Significant ROIs
Main_results.F <- rbind(CortVolResults.F,   
                        SubCortVolResults.F,
                        CortThickResults.F,
                        CortAreaResults.F,  
                        SulcalDepthResults.F)

Main_results.M <- rbind(CortVolResults.M,
                        SubCortVolResults.M,
                        CortThickResults.M,
                        CortAreaResults.M,
                        SulcalDepthResults.M)

Factor loadings

# N significant Brain Regions
SigROIsN.f <- sum(Main_results.F$FDR<0.05)
SigROIsN.m <- sum(Main_results.M$FDR<0.05)

# Running Principal component analysis ####
# Females
PCs.F                                <- principal(abcd.f[,Main_results.F$Outcome[Main_results.F$FDR<0.05]], 3)
BrainPCsLoadings.F                   <- as.data.frame(PCs.F$loadings[1:SigROIsN.f, 1:3])
rownames(BrainPCsLoadings.F)         <- Main_results.F$ElementDescription [Main_results.F$FDR<0.05]
for(i in 1:3){BrainPCsLoadings.F[,i] <- ifelse(abs(BrainPCsLoadings.F[,i])<.2,0, BrainPCsLoadings.F[,i])}

BrainPCsLoadings.F                   <- arrange(BrainPCsLoadings.F, desc(RC3))
BrainPCsLoadings.F                   <- arrange(BrainPCsLoadings.F, desc(RC2))
BrainPCsLoadings.F                   <- arrange(BrainPCsLoadings.F, desc(RC1))
BrainPCsLoadings.F$ElementDescription<- Main_results.F$ElementDescription [Main_results.F$FDR<0.05]

# Re-ordering Cols
colnames(BrainPCsLoadings.F)[1:3]    <- c('Brain PC1', 'Brain PC2','Brain PC3')#renaming PCs
BrainPCsLoadings.F.long              <- reshape2::melt(BrainPCsLoadings.F,
                                             id="ElementDescription",
                                             measure=c('Brain PC1', 'Brain PC2','Brain PC3'),
                                             variable.name="Brain components", value.name="Loading")

BrainPCsLoadings.F.long$ElementDescription <- factor(BrainPCsLoadings.F.long$ElementDescription,
                                                     levels = BrainPCsLoadings.F$ElementDescription)

#Males
PCs.M                                <- principal(abcd.m[,Main_results.M$Outcome[Main_results.M$FDR<0.05]], 3)
BrainPCsLoadings.M                   <- as.data.frame(PCs.M$loadings[1:SigROIsN.m, 1:3])
rownames(BrainPCsLoadings.M)         <- Main_results.M$ElementDescription [Main_results.M$FDR<0.05]
for(i in 1:3){BrainPCsLoadings.M[,i] <- ifelse(abs(BrainPCsLoadings.M[,i])<.2,0, BrainPCsLoadings.M[,i])}

BrainPCsLoadings.M                   <- arrange(BrainPCsLoadings.M, desc(RC3))
BrainPCsLoadings.M                   <- arrange(BrainPCsLoadings.M, desc(RC2))
BrainPCsLoadings.M                   <- arrange(BrainPCsLoadings.M, desc(RC1))
BrainPCsLoadings.M$ElementDescription<- Main_results.M$ElementDescription [Main_results.M$FDR<0.05]

# Re-ordering Cols
colnames(BrainPCsLoadings.M)[1:3]    <- c('Brain PC1', 'Brain PC2','Brain PC3')#renaming PCs
BrainPCsLoadings.M.long              <- reshape2::melt(BrainPCsLoadings.M,
                                             id="ElementDescription",
                                             measure=c('Brain PC1', 'Brain PC2','Brain PC3'),
                                             variable.name="Brain components", value.name="Loading")

BrainPCsLoadings.M.long$ElementDescription <- factor(BrainPCsLoadings.M.long$ElementDescription,
                                                     levels = BrainPCsLoadings.M$ElementDescription)

Create Figure 3A - Factor lodings significant brain regions

Loadings.F <-
  ggplot(BrainPCsLoadings.F.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
  facet_wrap( ~ `Brain components`, nrow = 1) +
  geom_bar(stat = "identity") +
  scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
  theme_bw(base_size = 10)+
  geom_vline(xintercept = 0, linewidth=.25)+
  coord_cartesian(xlim = c(-.6,.8))+
    labs(y="Brain Data Modalities and Regions", title = 'Females')+
  theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_blank())

Loadings.M <-
  ggplot(BrainPCsLoadings.M.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
  facet_wrap( ~ `Brain components`, nrow = 1) +
  geom_bar(stat = "identity") +
  scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
  coord_cartesian(xlim = c(-.6,.8))+
  theme_bw(base_size = 10) +
  geom_vline(xintercept = 0, linewidth=.25)+
  labs(y="Brain Data Modalities and Regions", title = 'Males')+
  theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_blank())

grid.arrange(Loadings.F, Loadings.M, ncol=2)

jpeg(filename = "Figure3A.jpg", height = 6,width = 13, units = 'in', res = 600)
grid.arrange(Loadings.F, Loadings.M, ncol=2)
dev.off()
## png 
##   2

Figure 3B

Analysis Brain PCs and children’s behavior and cognition

# Exploring PCs and CBCL and Cognitive measures

abcd.f[,'Brain.PC1'] <-  as.numeric(PCs.F$scores[,1])
abcd.f[,'Brain.PC2'] <-  as.numeric(PCs.F$scores[,2])
abcd.f[,'Brain.PC3'] <-  as.numeric(PCs.F$scores[,3])

abcd.m[,'Brain.PC1'] <-  as.numeric(PCs.M$scores[,1])
abcd.m[,'Brain.PC2'] <-  as.numeric(PCs.M$scores[,2])
abcd.m[,'Brain.PC3'] <-  as.numeric(PCs.M$scores[,3])

CBCL_results.F <- LME_loop(
  predictors = c('Brain.PC1', 'Brain.PC2', "Brain.PC3"),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.f
)

CBCL_results.F$FDR <- p.adjust(CBCL_results.F$p_value_Predictor, 'fdr')

CBCL_results.M <- LME_loop(
  predictors = c('Brain.PC1', 'Brain.PC2', "Brain.PC3"),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.m
)

CBCL_results.M$FDR <- p.adjust(CBCL_results.M$p_value_Predictor, 'fdr')

Associations Between Brain Components with Behavior Problems and Cognition

kable(cbind(CBCL_results.F[,-c(1,3:4)],CBCL_results.M[,-c(1:5)]), 
      digits = 4, 
      caption = "Associations Brain Components with Behavior Problems and Cognition",row.names = F)%>%
  kableExtra::kable_styling(position = "center")%>%
  add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
Associations Brain Components with Behavior Problems and Cognition
Females
Males
Outcome Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
cbcl_scr_syn_external_t Brain.PC1 -0.0243 0.0159 3371 0.285 0.1257 0.1885 -0.0863 0.0156 3644 0.280 0.0000 0.0000
cbcl_scr_syn_external_t Brain.PC2 0.0316 0.0161 3371 0.286 0.0496 0.1115 0.0007 0.0147 3644 0.274 0.9631 0.9860
cbcl_scr_syn_external_t Brain.PC3 0.0307 0.0155 3371 0.285 0.0485 0.1115 0.0248 0.0141 3644 0.275 0.0792 0.1584
cbcl_scr_syn_internal_t Brain.PC1 0.0171 0.0157 3371 0.306 0.2755 0.3542 -0.0555 0.0155 3644 0.294 0.0003 0.0012
cbcl_scr_syn_internal_t Brain.PC2 0.0093 0.0160 3371 0.306 0.5591 0.6390 -0.0080 0.0146 3644 0.292 0.5825 0.7489
cbcl_scr_syn_internal_t Brain.PC3 0.0287 0.0153 3371 0.306 0.0609 0.1218 0.0069 0.0140 3644 0.292 0.6241 0.7489
cbcl_scr_syn_totprob_t Brain.PC1 -0.0040 0.0148 3371 0.381 0.7885 0.8101 -0.0787 0.0145 3644 0.372 0.0000 0.0000
cbcl_scr_syn_totprob_t Brain.PC2 0.0088 0.0154 3371 0.381 0.5680 0.6390 0.0002 0.0137 3644 0.368 0.9860 0.9860
cbcl_scr_syn_totprob_t Brain.PC3 0.0255 0.0145 3371 0.381 0.0789 0.1421 0.0093 0.0130 3644 0.368 0.4744 0.7489
nihtbx_totalcomp_fc Brain.PC1 0.1314 0.0192 3070 0.059 0.0000 0.0000 0.0859 0.0188 3333 0.044 0.0000 0.0000
nihtbx_totalcomp_fc Brain.PC2 -0.0305 0.0199 3070 0.046 0.1253 0.1885 -0.0366 0.0177 3333 0.039 0.0385 0.0866
nihtbx_totalcomp_fc Brain.PC3 -0.0530 0.0188 3070 0.048 0.0049 0.0147 0.0016 0.0169 3333 0.038 0.9263 0.9860
nihtbx_cryst_fc Brain.PC1 0.1245 0.0192 3082 0.047 0.0000 0.0000 0.0968 0.0187 3349 0.048 0.0000 0.0000
nihtbx_cryst_fc Brain.PC2 0.0048 0.0201 3082 0.035 0.8101 0.8101 -0.0191 0.0176 3349 0.039 0.2792 0.5026
nihtbx_cryst_fc Brain.PC3 -0.0277 0.0189 3082 0.037 0.1432 0.1983 0.0099 0.0167 3349 0.039 0.5551 0.7489
nihtbx_fluidcomp_fc Brain.PC1 0.0844 0.0195 3075 0.035 0.0000 0.0001 0.0420 0.0191 3332 0.023 0.0277 0.0713
nihtbx_fluidcomp_fc Brain.PC2 -0.0576 0.0195 3075 0.033 0.0032 0.0132 -0.0407 0.0179 3332 0.023 0.0228 0.0684
nihtbx_fluidcomp_fc Brain.PC3 -0.0554 0.0190 3075 0.031 0.0037 0.0132 -0.0110 0.0171 3332 0.022 0.5203 0.7489

Assotiations Between Prenatal Adversity with Children’s Behavior and Cognition

Prenatal_results.F <- LME_loop(
  predictors = c('A_Prenatal_Burden_Score_z'),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.f
)

Prenatal_results.F$FDR <- p.adjust(Prenatal_results.F$p_value_Predictor, 'fdr')

Prenatal_results.M <- LME_loop(
  predictors = c('A_Prenatal_Burden_Score'),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.m
)

Prenatal_results.M$FDR <- p.adjust(Prenatal_results.M$p_value_Predictor, 'fdr')
kable(cbind(Prenatal_results.F[,-c(1,3:4)],Prenatal_results.M[,-c(1:5)]), 
      digits = 3, 
      caption = "Associations Prenatal Adverse Exposures with Behavior Problems and Cognition",row.names = F)%>%
  kableExtra::kable_styling(position = "center")%>%add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
Associations Prenatal Adverse Exposures with Behavior Problems and Cognition
Females
Males
Outcome Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
cbcl_scr_syn_external_t A_Prenatal_Burden_Score_z 0.050 0.016 3371 0.286 0.002 0.004 0.026 0.010 3644 0.274 0.012 0.037
cbcl_scr_syn_internal_t A_Prenatal_Burden_Score_z 0.024 0.016 3371 0.305 0.128 0.154 0.018 0.010 3644 0.292 0.085 0.170
cbcl_scr_syn_totprob_t A_Prenatal_Burden_Score_z 0.052 0.015 3371 0.381 0.000 0.003 0.030 0.010 3644 0.368 0.002 0.013
nihtbx_totalcomp_fc A_Prenatal_Burden_Score_z -0.040 0.020 3070 0.048 0.040 0.060 -0.001 0.013 3333 0.038 0.922 0.922
nihtbx_cryst_fc A_Prenatal_Burden_Score_z 0.000 0.020 3082 0.035 0.999 0.999 0.009 0.013 3349 0.038 0.462 0.659
nihtbx_fluidcomp_fc A_Prenatal_Burden_Score_z -0.064 0.020 3075 0.033 0.001 0.003 -0.008 0.013 3332 0.022 0.549 0.659

Specifing mediation models

# Standardizing predictors for mediation ####
for( i in c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
)){
  
  abcd.f[,paste0(i,'.std')] <- as.numeric(scale(abcd.f[,i]))
  abcd.m[,paste0(i,'.std')] <- as.numeric(scale(abcd.m[,i]))
  }

#### Specifing Mediation Models ####
# Mediation Brain PC1 ####

#Total problems
med.BrainPC1.Tot <- "
    # direct effect
    cbcl_scr_syn_totprob_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_totprob_t.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_totprob_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

#Externalizing problems - PC1
med.BrainPC1.Ext <- "
    # direct effect
    cbcl_scr_syn_external_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_external_t.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_external_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"
# Internalizing
med.BrainPC1.Int <- "
    # direct effect
    cbcl_scr_syn_internal_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_internal_t.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_internal_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Total Cognition
med.BrainPC1.CogTotal <- "
    # direct effect
    nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_totalcomp_fc.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Fluid Cognition - PC1 and PC2
med.BrainPC1.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

med.BrainPC2.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC2 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*Brain.PC2
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

med.BrainPC3.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    
    Brain.PC3 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*Brain.PC3
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Cryst Cognition
med.BrainPC1.CogCryst <- "
    # direct effect
    nihtbx_cryst_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    Brain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_cryst_fc.std ~ b*Brain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_cryst_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

#Mediation Females

fit.BrainPC1.CogTotal.f <- lavaan::sem(med.BrainPC1.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.CogCryst.f <- lavaan::sem(med.BrainPC1.CogCryst, data = abcd.f, se = "bootstrap", bootstrap = 1000)

fit.BrainPC1.CogFluid.f <- lavaan::sem(med.BrainPC1.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC2.CogFluid.f <- lavaan::sem(med.BrainPC2.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC3.CogFluid.f <- lavaan::sem(med.BrainPC3.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)


#Mediation Males
fit.BrainPC1.Tot.m      <- lavaan::sem(med.BrainPC1.Tot     , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.Ext.m      <- lavaan::sem(med.BrainPC1.Ext     , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.Int.m      <- lavaan::sem(med.BrainPC1.Int     , data = abcd.m, se = "bootstrap", bootstrap = 1000)

fit.BrainPC1.CogTotal.m <- lavaan::sem(med.BrainPC1.CogTotal, data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.CogCryst.m <- lavaan::sem(med.BrainPC1.CogCryst, data = abcd.m, se = "bootstrap", bootstrap = 1000)

Preparing Mediation Results

#Females
fit.Pars.BrainPC1.CogTotal.f <- lavaan::parameterestimates(fit.BrainPC1.CogTotal.f, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC1.CogCryst.f <- lavaan::parameterestimates(fit.BrainPC1.CogCryst.f, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC1.CogFluid.f <- lavaan::parameterestimates(fit.BrainPC1.CogFluid.f, boot.ci.type = "bca.simple") 

fit.Pars.BrainPC2.CogFluid.f <- lavaan::parameterestimates(fit.BrainPC2.CogFluid.f, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC3.CogFluid.f <- lavaan::parameterestimates(fit.BrainPC3.CogFluid.f, boot.ci.type = "bca.simple") 

# Males
fit.Pars.BrainPC1.Tot.m      <- lavaan::parameterestimates(fit.BrainPC1.Tot.m, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC1.Ext.m      <- lavaan::parameterestimates(fit.BrainPC1.Ext.m, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC1.Int.m      <- lavaan::parameterestimates(fit.BrainPC1.Int.m, boot.ci.type = "bca.simple") 

fit.Pars.BrainPC1.CogTotal.m <- lavaan::parameterestimates(fit.BrainPC1.CogTotal.m, boot.ci.type = "bca.simple") 
fit.Pars.BrainPC1.CogCryst.m <- lavaan::parameterestimates(fit.BrainPC1.CogCryst.m, boot.ci.type = "bca.simple") 

Create Figure 3B - Mediation analysis parameters used in Figure 3B

Mediation Parameters Females

kable(fit.Pars.BrainPC1.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Total Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Total Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_totalcomp_fc.std ~ A_Prenatal_Burden_Score c -0.033 0.012 -2.741 0.006 -0.058 -0.011
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.043 0.012 -3.538 0.000 -0.067 -0.020
nihtbx_totalcomp_fc.std ~ Brain.PC1 b 0.123 0.019 6.603 0.000 0.086 0.158
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.033 0.012 -2.619 0.009 -0.059 -0.009
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.086 0.012 7.010 0.000 0.060 0.109
ab := a*b ab -0.005 0.002 -3.051 0.002 -0.009 -0.002
total := c+(a*b) total -0.039 0.012 -3.161 0.002 -0.063 -0.016
abtot := ab/total abtot 0.135 1.518 0.089 0.929 0.048 0.368
kable(fit.Pars.BrainPC1.CogCryst.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Crystallized Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Crystallized Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_cryst_fc.std ~ A_Prenatal_Burden_Score c -0.012 0.012 -1.001 0.317 -0.036 0.014
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.043 0.012 -3.613 0.000 -0.066 -0.020
nihtbx_cryst_fc.std ~ Brain.PC1 b 0.117 0.019 6.179 0.000 0.080 0.156
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.032 0.012 -2.593 0.010 -0.056 -0.009
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.087 0.012 7.335 0.000 0.063 0.112
ab := a*b ab -0.005 0.002 -3.074 0.002 -0.009 -0.002
total := c+(a*b) total -0.017 0.012 -1.404 0.160 -0.042 0.008
abtot := ab/total abtot 0.289 5.873 0.049 0.961 -0.292 8.037
kable(fit.Pars.BrainPC1.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.041 0.012 -3.509 0.000 -0.062 -0.016
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.042 0.011 -3.722 0.000 -0.065 -0.021
nihtbx_fluidcomp_fc.std ~ Brain.PC1 b 0.078 0.020 3.957 0.000 0.040 0.118
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.032 0.012 -2.648 0.008 -0.056 -0.008
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.086 0.012 6.994 0.000 0.061 0.109
ab := a*b ab -0.003 0.001 -2.665 0.008 -0.006 -0.001
total := c+(a*b) total -0.044 0.012 -3.801 0.000 -0.066 -0.020
abtot := ab/total abtot 0.075 0.046 1.637 0.102 0.026 0.204
kable(fit.Pars.BrainPC2.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC2 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.046 0.012 -3.792 0.000 -0.071 -0.023
Brain.PC2 ~ A_Prenatal_Burden_Score a -0.032 0.012 -2.647 0.008 -0.056 -0.009
nihtbx_fluidcomp_fc.std ~ Brain.PC2 b -0.061 0.018 -3.419 0.001 -0.094 -0.023
Brain.PC1 ~ A_Prenatal_Burden_Score aPC1 -0.042 0.012 -3.544 0.000 -0.065 -0.019
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.086 0.012 7.248 0.000 0.065 0.110
ab := a*b ab 0.002 0.001 2.098 0.036 0.001 0.004
total := c+(a*b) total -0.044 0.012 -3.616 0.000 -0.069 -0.021
abtot := ab/total abtot -0.045 0.042 -1.073 0.283 -0.164 -0.012
kable(fit.Pars.BrainPC3.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC3 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC3 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.041 0.013 -3.146 0.002 -0.066 -0.015
Brain.PC3 ~ A_Prenatal_Burden_Score a 0.086 0.012 7.220 0.000 0.063 0.109
nihtbx_fluidcomp_fc.std ~ Brain.PC3 b -0.043 0.018 -2.424 0.015 -0.079 -0.009
Brain.PC1 ~ A_Prenatal_Burden_Score aPC1 -0.042 0.012 -3.590 0.000 -0.067 -0.021
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.032 0.012 -2.642 0.008 -0.056 -0.008
ab := a*b ab -0.004 0.002 -2.317 0.021 -0.007 -0.001
total := c+(a*b) total -0.044 0.013 -3.472 0.001 -0.069 -0.019
abtot := ab/total abtot 0.084 0.125 0.667 0.505 0.015 0.256

Mediation Parameters Males

kable(fit.Pars.BrainPC1.Tot.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Total Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_totprob_t.std ~ A_Prenatal_Burden_Score c 0.013 0.009 1.417 0.157 -0.005 0.032
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.078 0.011 -7.333 0.000 -0.100 -0.058
cbcl_scr_syn_totprob_t.std ~ Brain.PC1 b -0.069 0.014 -4.817 0.000 -0.095 -0.037
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.079 0.011 6.851 0.000 0.057 0.102
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.066 0.012 5.562 0.000 0.043 0.089
ab := a*b ab 0.005 0.001 4.098 0.000 0.003 0.008
total := c+(a*b) total 0.019 0.009 1.998 0.046 0.000 0.037
abtot := ab/total abtot 0.289 5.388 0.054 0.957 0.099 2.131
kable(fit.Pars.BrainPC1.Ext.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Externalizing Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Externalizing Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_external_t.std ~ A_Prenatal_Burden_Score c 0.012 0.010 1.178 0.239 -0.008 0.032
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.078 0.010 -7.575 0.000 -0.098 -0.057
cbcl_scr_syn_external_t.std ~ Brain.PC1 b -0.081 0.015 -5.355 0.000 -0.112 -0.051
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.079 0.011 7.073 0.000 0.058 0.101
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.066 0.012 5.626 0.000 0.044 0.089
ab := a*b ab 0.006 0.001 4.253 0.000 0.004 0.010
total := c+(a*b) total 0.019 0.010 1.811 0.070 -0.002 0.038
abtot := ab/total abtot 0.342 24.521 0.014 0.989 -0.495 3.092
kable(fit.Pars.BrainPC1.Int.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Internalizing Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Internalizing Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_internal_t.std ~ A_Prenatal_Burden_Score c 0.006 0.010 0.581 0.561 -0.015 0.024
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.078 0.011 -7.291 0.000 -0.098 -0.056
cbcl_scr_syn_internal_t.std ~ Brain.PC1 b -0.047 0.016 -2.992 0.003 -0.077 -0.013
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.079 0.012 6.831 0.000 0.056 0.102
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.066 0.012 5.706 0.000 0.043 0.088
ab := a*b ab 0.004 0.001 2.828 0.005 0.001 0.006
total := c+(a*b) total 0.009 0.010 0.956 0.339 -0.011 0.028
abtot := ab/total abtot 0.388 3.649 0.106 0.915 0.045 45.417
kable(fit.Pars.BrainPC1.CogTotal.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Cognition - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Total Cognition - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_totalcomp_fc.std ~ A_Prenatal_Burden_Score c -0.012 0.012 -1.023 0.307 -0.037 0.011
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.070 0.011 -6.223 0.000 -0.093 -0.049
nihtbx_totalcomp_fc.std ~ Brain.PC1 b 0.084 0.019 4.343 0.000 0.045 0.120
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.074 0.012 6.257 0.000 0.053 0.101
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.063 0.012 5.222 0.000 0.042 0.088
ab := a*b ab -0.006 0.002 -3.573 0.000 -0.010 -0.003
total := c+(a*b) total -0.018 0.012 -1.512 0.131 -0.044 0.004
abtot := ab/total abtot 0.319 16.924 0.019 0.985 -0.567 6.772
kable(fit.Pars.BrainPC1.CogCryst.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Crystallized Cognition - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Crystallized Cognition - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_cryst_fc.std ~ A_Prenatal_Burden_Score c -0.009 0.012 -0.775 0.438 -0.031 0.016
Brain.PC1 ~ A_Prenatal_Burden_Score a -0.070 0.011 -6.300 0.000 -0.091 -0.047
nihtbx_cryst_fc.std ~ Brain.PC1 b 0.101 0.018 5.579 0.000 0.066 0.137
Brain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.074 0.012 6.199 0.000 0.051 0.099
Brain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.064 0.012 5.311 0.000 0.040 0.087
ab := a*b ab -0.007 0.002 -4.061 0.000 -0.011 -0.004
total := c+(a*b) total -0.016 0.012 -1.391 0.164 -0.038 0.008
abtot := ab/total abtot 0.443 31.623 0.014 0.989 -0.691 31.904

Figure 3C - Meta-analysis of significant Findings

Define LME By scanner Function

LME_bySite_loop <-
  function(predictors,
           outcomes,
           covars = NULL,
           data,
           predictorsLab = NULL,
           outcomesLab = NULL,
           ROI=NULL,
           print.model = NULL,
           dig = NULL,
           is.log10 = FALSE,
           Site
  ){
    require(dplyr)
    
    interac_names   <- c("MainEffect_ID",
                         "Site",
                         "Outcome",
                         "Label",
                         'ElementDescription',
                         "Predictor",
                         "Beta_Predictor",
                         'Std.error',
                         "Sample_size",
                         "R2",
                         "p_value_Predictor"
                         )
    
    
    #Labels
    
    if(!is.null(predictorsLab)){
        
        predictors       <-  predictors
        predictorsLabels <- data.frame(vars = predictors,
                                       names= predictorsLab
                                       ,stringsAsFactors = F)
    }
    
    if(!is.null(outcomesLab)){
      
      outcomes <-  outcomes
      outcomesLabels <- data.frame(vars = outcomes,
                                   names= outcomesLab,
                                   ROI=ROI,
                                   stringsAsFactors = F)
      }
    
    #Results 
    site.name <-  names(table(data[,Site]))
    main_results <- matrix(NA, nrow = length(predictors)*length(outcomes)*length(site.name), ncol = 11) %>% as.data.frame()
    colnames(main_results) <- interac_names
    
    #Preparing data
    
    if (is.null(covars)) {
        lm.formula <- "outcome.y ~ predictor.x"
    } else{
        lm.formula <-
            paste("scale(outcome.y) ~ predictor.x + ", paste(covars, collapse = "+"))
    }
    if(is.log10==TRUE){lm.formula <- gsub("outcome.y", "log10(outcome.y)", lm.formula)}
    
    formula.random = "~(1|rel_family_id)"
    
    iID <- 0
    for(i in outcomes){
      for(j in predictors){
          try(silent = T,
        for(k in site.name){
          
            Data_Site <- data[data[,Site] == k,]
          
            iID <- iID+1
            Data_Site$outcome.y    <- Data_Site[,i]  
            Data_Site$predictor.x  <- Data_Site[,j]
            
            if(is.null(covars)){
              Data_Site1 <- Data_Site[ complete.cases( Data_Site[,c("outcome.y", "predictor.x")] ), ]
            }else{
              Data_Site1 <- Data_Site[ complete.cases( Data_Site[,c("outcome.y", "predictor.x", covars)] ), ]
              }
            
            main_results$Sample_size   [iID] <- nrow(Data_Site1)
            main_results$MainEffect_ID [iID] <- iID
            main_results$Site          [iID] <- k
            main_results$Outcome  [iID] <- i
            
            
            if(!is.null(outcomesLab)){
                main_results$Label              [iID] <- outcomesLabels[outcomesLabels$vars== i,"names"]
                main_results$ElementDescription [iID] <- outcomesLabels[outcomesLabels$vars== i,"ROI"]
            }
            
            
            if(!is.null(predictorsLab)){
                main_results$Predictor [iID] <- predictorsLabels[predictorsLabels$vars== j,"names"]
            }else{main_results$Predictor  [iID] <- j}
            
            
            if(nrow(Data_Site)<49)next
            
            
            #Running Model
            model.loop = gamm4::gamm4(
              as.formula(lm.formula),
              random = as.formula(formula.random),
              weights = NULL,
              data = Data_Site
            )

            main_results$Beta_Predictor      [iID] <- summary(model.loop$gam)$p.table[2,1] 
            main_results$Std.error           [iID] <- summary(model.loop$gam)$p.table[2,2] 
            main_results$p_value_Predictor   [iID] <- summary(model.loop$gam)$p.table[2,4] 
            main_results$R2                  [iID] <- summary(model.loop$gam)$r.sq %>% round(3)
            
            
            if (!is.null(print.model)) {
                print(i)
                print(j)
                print(k)
                print(summary(model.loop$gam)$p.table)
        
        }
    }
          )    
    
    }
    }
    main_results <<- main_results
}

Analysis by scanner for meta-analysis

#Cortical Volume by site Girls
CortVol_SigResults_bySite.F <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortVolResults.F$Outcome            [CortVolResults.F$FDR <0.05],
    outcomesLab   =  CortVolResults.F$Label              [CortVolResults.F$FDR <0.05],
    ROI           =  CortVolResults.F$ElementDescription [CortVolResults.F$FDR <0.05],
    covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.f
  )

CortVol_SigResults_bySite.F      <- 
  CortVol_SigResults_bySite.F[complete.cases(CortVol_SigResults_bySite.F),]#filtering GLMEs that didnt fit 

CortVol_SigResults_bySite.F$Site <- 
  abcd$abcd_site[match(CortVol_SigResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Cortical Volume by site Boys
CortVol_SigResults_bySite.M <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortVolResults.M$Outcome            [CortVolResults.M$FDR <0.05],
    outcomesLab   =  CortVolResults.M$Label              [CortVolResults.M$FDR <0.05],
    ROI           =  CortVolResults.M$ElementDescription [CortVolResults.M$FDR <0.05],
    covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.m
  )

CortVol_SigResults_bySite.M      <- 
  CortVol_SigResults_bySite.M[complete.cases(CortVol_SigResults_bySite.M),]#filtering GLMEs that didnt fit 

CortVol_SigResults_bySite.M$Site <- 
  abcd$abcd_site[match(CortVol_SigResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#SubCortical Volume by site Girls
SubCortVol_SigResults_bySite.F <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  SubCortVolResults.F$Outcome            [SubCortVolResults.F$FDR <0.05],
    outcomesLab   =  SubCortVolResults.F$Label              [SubCortVolResults.F$FDR <0.05],
    ROI           =  SubCortVolResults.F$ElementDescription [SubCortVolResults.F$FDR <0.05],
    covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.f
  )

SubCortVol_SigResults_bySite.F      <- 
  SubCortVol_SigResults_bySite.F[complete.cases(SubCortVol_SigResults_bySite.F),]#filtering GLMEs that didnt fit 

SubCortVol_SigResults_bySite.F$Site <- 
  abcd$abcd_site[match(SubCortVol_SigResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI


#SubCortical Volume by site Boys
SubCortVol_SigResults_bySite.M <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  SubCortVolResults.M$Outcome            [SubCortVolResults.M$FDR <0.05],
    outcomesLab   =  SubCortVolResults.M$Label              [SubCortVolResults.M$FDR <0.05],
    ROI           =  SubCortVolResults.M$ElementDescription [SubCortVolResults.M$FDR <0.05],
    covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.m
  )

SubCortVol_SigResults_bySite.M      <- 
  SubCortVol_SigResults_bySite.M[complete.cases(SubCortVol_SigResults_bySite.M),]#filtering GLMEs that didnt fit 

SubCortVol_SigResults_bySite.M$Site <- 
  abcd$abcd_site[match(SubCortVol_SigResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Cortical Thickness by site Girls
CortThickResults_bySite.F <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortThickResults.F$Outcome            [CortThickResults.F$FDR <0.05],
    outcomesLab   =  CortThickResults.F$Label              [CortThickResults.F$FDR <0.05],
    ROI           =  CortThickResults.F$ElementDescription [CortThickResults.F$FDR <0.05],
    covars = c(covars.x, "smri_thick_cdk_mean_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.f
  )

CortThickResults_bySite.F      <- 
  CortThickResults_bySite.F[complete.cases(CortThickResults_bySite.F),]#filtering GLMEs that didnt fit 

CortThickResults_bySite.F$Site <- 
  abcd$abcd_site[match(CortThickResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Cortical Thickness by site Boys
CortThickResults_bySite.M <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortThickResults.M$Outcome            [CortThickResults.M$FDR <0.05],
    outcomesLab   =  CortThickResults.M$Label              [CortThickResults.M$FDR <0.05],
    ROI           =  CortThickResults.M$ElementDescription [CortThickResults.M$FDR <0.05],
    covars = c(covars.x, "smri_thick_cdk_mean_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.m
  )

CortThickResults_bySite.M      <- 
  CortThickResults_bySite.M[complete.cases(CortThickResults_bySite.M),]#filtering GLMEs that didnt fit 

CortThickResults_bySite.M$Site <- 
  abcd$abcd_site[match(CortThickResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Cortical Area by site Girls
CortAreaResults_bySite.F <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortAreaResults.F$Outcome            [CortAreaResults.F$FDR <0.05],
    outcomesLab   =  CortAreaResults.F$Label              [CortAreaResults.F$FDR <0.05],
    ROI           =  CortAreaResults.F$ElementDescription [CortAreaResults.F$FDR <0.05],
    covars = c(covars.x, "smri_area_cdk_total_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.f
  )

CortAreaResults_bySite.F      <- 
  CortAreaResults_bySite.F[complete.cases(CortAreaResults_bySite.F),]#filtering GLMEs that didnt fit 

CortAreaResults_bySite.F$Site <- 
  abcd$abcd_site[match(CortAreaResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Cortical Area by site Boys 
CortAreaResults_bySite.M <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  CortAreaResults.M$Outcome            [CortAreaResults.M$FDR <0.05],
    outcomesLab   =  CortAreaResults.M$Label              [CortAreaResults.M$FDR <0.05],
    ROI           =  CortAreaResults.M$ElementDescription [CortAreaResults.M$FDR <0.05],
    covars = c(covars.x, "smri_area_cdk_total_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.m
  )

CortAreaResults_bySite.M      <- 
  CortAreaResults_bySite.M[complete.cases(CortAreaResults_bySite.M),]#filtering GLMEs that didnt fit 

#Sulcal Depth by site Girls
SulcalDepthResults_bySite.F <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  SulcalDepthResults.F$Outcome               [SulcalDepthResults.F$FDR <0.05],
    outcomesLab   =  SulcalDepthResults.F$Label                 [SulcalDepthResults.F$FDR <0.05],
    ROI           =  SulcalDepthResults.F$ElementDescription    [SulcalDepthResults.F$FDR <0.05],
    covars = c(covars.x, "smri_sulc_cdk_mean_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.f
  )

SulcalDepthResults_bySite.F      <- 
  SulcalDepthResults_bySite.F[complete.cases(SulcalDepthResults_bySite.F),]#filtering GLMEs that didnt fit 

SulcalDepthResults_bySite.F$Site <- 
  abcd$abcd_site[match(SulcalDepthResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

#Sulcal Depth by site Boys
SulcalDepthResults_bySite.M <-
  LME_bySite_loop(
    predictors    = "A_Prenatal_Burden_Score_z",
    outcomes      =  SulcalDepthResults.M$Outcome               [SulcalDepthResults.M$FDR <0.05],
    outcomesLab   =  SulcalDepthResults.M$Label                 [SulcalDepthResults.M$FDR <0.05],
    ROI           =  SulcalDepthResults.M$ElementDescription    [SulcalDepthResults.M$FDR <0.05],
    covars = c(covars.x, "smri_sulc_cdk_mean_z"),
    Site =  "mri_info_deviceserialnumber",
    data = abcd.m
  )

SulcalDepthResults_bySite.M      <- 
  SulcalDepthResults_bySite.M[complete.cases(SulcalDepthResults_bySite.M),]#filtering GLMEs that didnt fit 

SulcalDepthResults_bySite.M$Site <- 
  abcd$abcd_site[match(SulcalDepthResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI

Performing meta-analysis

#Selecting Significant ROIs
CortVol.Sig.F     <-  CortVolResults.F$Outcome   [CortVolResults.F$FDR <0.05]
SubCortVol.Sig.F  <-  SubCortVolResults.F$Outcome[SubCortVolResults.F$FDR <0.05]
CortThick.Sig.F   <-  CortThickResults.F$Outcome [CortThickResults.F$FDR <0.05]
CortArea.Sig.F    <-  CortAreaResults.F$Outcome  [CortAreaResults.F$FDR <0.05]
SulcalDepth.Sig.F <-  SulcalDepthResults.F$Outcome[SulcalDepthResults.F$FDR <0.05]

CortVol.Sig.M     <-  CortVolResults.M$Outcome   [CortVolResults.M$FDR <0.05]
SubCortVol.Sig.M  <-  SubCortVolResults.M$Outcome[SubCortVolResults.M$FDR <0.05]
CortThick.Sig.M   <-  CortThickResults.M$Outcome [CortThickResults.M$FDR <0.05]
CortArea.Sig.M    <-  CortAreaResults.M$Outcome  [CortAreaResults.M$FDR <0.05]
SulcalDepth.Sig.M <-  SulcalDepthResults.M$Outcome[SulcalDepthResults.M$FDR <0.05]

# Cortical Vol meta-analysis - Girls #
CortVol.Meta.F           <- as.data.frame(matrix(nrow = length(CortVol.Sig.F),ncol = 5))
colnames(CortVol.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortVol.Sig.F){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = CortVol_SigResults_bySite.F[CortVol_SigResults_bySite.F$Outcome==i,]$Beta_Predictor,
    sei = CortVol_SigResults_bySite.F[CortVol_SigResults_bySite.F$Outcome==i,]$Std.error,
    method = "FE")
  
  CortVol.Meta.F[iID,"ROI"]        <- i
  CortVol.Meta.F[iID,"PooledBeta"] <- meta.res$beta
  CortVol.Meta.F[iID,"p.value"]    <- meta.res$pval
  CortVol.Meta.F[iID,"ci.lb"]      <- meta.res$ci.lb
  CortVol.Meta.F[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Cortical Vol meta-analysis - Boys #
CortVol.Meta.M           <- as.data.frame(matrix(nrow = length(CortVol.Sig.M),ncol = 5))
colnames(CortVol.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortVol.Sig.M){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = CortVol_SigResults_bySite.M[CortVol_SigResults_bySite.M$Outcome==i,]$Beta_Predictor,
    sei = CortVol_SigResults_bySite.M[CortVol_SigResults_bySite.M$Outcome==i,]$Std.error,
    method = "FE")
  
  CortVol.Meta.M[iID,"ROI"]        <- i
  CortVol.Meta.M[iID,"PooledBeta"] <- meta.res$beta
  CortVol.Meta.M[iID,"p.value"]    <- meta.res$pval
  CortVol.Meta.M[iID,"ci.lb"]      <- meta.res$ci.lb
  CortVol.Meta.M[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Subcortical Volume - Girls #

SubCortVol.Meta.F           <- as.data.frame(matrix(nrow = length(SubCortVol.Sig.F),ncol = 5))
colnames(SubCortVol.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in SubCortVol.Sig.F){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = SubCortVol_SigResults_bySite.F[SubCortVol_SigResults_bySite.F$Outcome==i,]$Beta_Predictor,
    sei = SubCortVol_SigResults_bySite.F[SubCortVol_SigResults_bySite.F$Outcome==i,]$Std.error,
    method = "FE")
  
  SubCortVol.Meta.F[iID,"ROI"]        <- i
  SubCortVol.Meta.F[iID,"PooledBeta"] <- meta.res$beta
  SubCortVol.Meta.F[iID,"p.value"]    <- meta.res$pval
  SubCortVol.Meta.F[iID,"ci.lb"]      <- meta.res$ci.lb
  SubCortVol.Meta.F[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Subcortical Volume - Boys #

SubCortVol.Meta.M           <- as.data.frame(matrix(nrow = length(SubCortVol.Sig.M),ncol = 5))
colnames(SubCortVol.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in SubCortVol.Sig.M){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = SubCortVol_SigResults_bySite.M[SubCortVol_SigResults_bySite.M$Outcome==i,]$Beta_Predictor,
    sei = SubCortVol_SigResults_bySite.M[SubCortVol_SigResults_bySite.M$Outcome==i,]$Std.error,
    method = "FE")
  
  SubCortVol.Meta.M[iID,"ROI"]        <- i
  SubCortVol.Meta.M[iID,"PooledBeta"] <- meta.res$beta
  SubCortVol.Meta.M[iID,"p.value"]    <- meta.res$pval
  SubCortVol.Meta.M[iID,"ci.lb"]      <- meta.res$ci.lb
  SubCortVol.Meta.M[iID,"ci.ub"]      <- meta.res$ci.ub
}


# Cortical Thickness meta-analysis - Girls #
CortThick.Meta.F           <- as.data.frame(matrix(nrow = length(CortThick.Sig.F),ncol = 5))
colnames(CortThick.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortThick.Sig.F){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = CortThickResults_bySite.F[CortThickResults_bySite.F$Outcome==i,]$Beta_Predictor,
    sei = CortThickResults_bySite.F[CortThickResults_bySite.F$Outcome==i,]$Std.error,
    method = "FE")
  
  CortThick.Meta.F[iID,"ROI"]        <- i
  CortThick.Meta.F[iID,"PooledBeta"] <- meta.res$beta
  CortThick.Meta.F[iID,"p.value"]    <- meta.res$pval
  CortThick.Meta.F[iID,"ci.lb"]      <- meta.res$ci.lb
  CortThick.Meta.F[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Cortical Thickness meta-analysis - Boys #
CortThick.Meta.M           <- as.data.frame(matrix(nrow = length(CortThick.Sig.M),ncol = 5))
colnames(CortThick.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortThick.Sig.M){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi = CortThickResults_bySite.M[CortThickResults_bySite.M$Outcome==i,]$Beta_Predictor,
    sei = CortThickResults_bySite.M[CortThickResults_bySite.M$Outcome==i,]$Std.error,
    method = "FE")
  
  CortThick.Meta.M[iID,"ROI"]        <- i
  CortThick.Meta.M[iID,"PooledBeta"] <- meta.res$beta
  CortThick.Meta.M[iID,"p.value"]    <- meta.res$pval
  CortThick.Meta.M[iID,"ci.lb"]      <- meta.res$ci.lb
  CortThick.Meta.M[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Cortical Area meta-analysis - Girls #
CortArea.Meta.F           <- as.data.frame(matrix(nrow = length(CortArea.Sig.F),ncol = 5))
colnames(CortArea.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortArea.Sig.F){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi =  CortAreaResults_bySite.F[CortAreaResults_bySite.F$Outcome==i,]$Beta_Predictor,
    sei = CortAreaResults_bySite.F[CortAreaResults_bySite.F$Outcome==i,]$Std.error,
    method = "FE")
  
  CortArea.Meta.F[iID,"ROI"]        <- i
  CortArea.Meta.F[iID,"PooledBeta"] <- meta.res$beta
  CortArea.Meta.F[iID,"p.value"]    <- meta.res$pval
  CortArea.Meta.F[iID,"ci.lb"]      <- meta.res$ci.lb
  CortArea.Meta.F[iID,"ci.ub"]      <- meta.res$ci.ub
}

# Cortical Area meta-analysis - Boys
CortArea.Meta.M           <- as.data.frame(matrix(nrow = length(CortArea.Sig.M),ncol = 5))
colnames(CortArea.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in CortArea.Sig.M){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi =  CortAreaResults_bySite.M[CortAreaResults_bySite.M$Outcome==i,]$Beta_Predictor,
    sei = CortAreaResults_bySite.M[CortAreaResults_bySite.M$Outcome==i,]$Std.error,
    method = "FE")
  
  CortArea.Meta.M[iID,"ROI"]        <- i
  CortArea.Meta.M[iID,"PooledBeta"] <- meta.res$beta
  CortArea.Meta.M[iID,"p.value"]    <- meta.res$pval
  CortArea.Meta.M[iID,"ci.lb"]      <- meta.res$ci.lb
  CortArea.Meta.M[iID,"ci.ub"]      <- meta.res$ci.ub
}

# SulcalDepth meta-analysis - Girls #
SulcalDepth.Meta.F           <- as.data.frame(matrix(nrow = length(SulcalDepth.Sig.F),ncol = 5))
colnames(SulcalDepth.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in SulcalDepth.Sig.F){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi  = SulcalDepthResults_bySite.F[SulcalDepthResults_bySite.F$Outcome==i,]$Beta_Predictor,
    sei = SulcalDepthResults_bySite.F[SulcalDepthResults_bySite.F$Outcome==i,]$Std.error,
    method = "FE")
  
  SulcalDepth.Meta.F[iID,"ROI"]        <- i
  SulcalDepth.Meta.F[iID,"PooledBeta"] <- meta.res$beta
  SulcalDepth.Meta.F[iID,"p.value"]    <- meta.res$pval
  SulcalDepth.Meta.F[iID,"ci.lb"]      <- meta.res$ci.lb
  SulcalDepth.Meta.F[iID,"ci.ub"]      <- meta.res$ci.ub
}

#SulcalDepth meta-analysis meta-analysis - Boys #
SulcalDepth.Meta.M           <- as.data.frame(matrix(nrow = length(SulcalDepth.Sig.M),ncol = 5))
colnames(SulcalDepth.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')

iID <- 0
for( i in SulcalDepth.Sig.M){
  
  iID <- iID+1
  meta.res <- metafor::rma(
    yi  = SulcalDepthResults_bySite.M[SulcalDepthResults_bySite.M$Outcome==i,]$Beta_Predictor,
    sei = SulcalDepthResults_bySite.M[SulcalDepthResults_bySite.M$Outcome==i,]$Std.error,
    method = "FE")
  
  SulcalDepth.Meta.M[iID,"ROI"]        <- i
  SulcalDepth.Meta.M[iID,"PooledBeta"] <- meta.res$beta
  SulcalDepth.Meta.M[iID,"p.value"]    <- meta.res$pval
  SulcalDepth.Meta.M[iID,"ci.lb"]      <- meta.res$ci.lb
  SulcalDepth.Meta.M[iID,"ci.ub"]      <- meta.res$ci.ub
}

Create Figure 3C - Meta-analysis

# Girls
CortVol.Meta.F$Label                 <-CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"Label"]
CortVol.Meta.F$ElementDescription    <-CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"ElementDescription"]
CortVol.Meta.F$Std.Beta              <- CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"Beta_Predictor"]
CortVol.Meta.F$Std_p.value           <- CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"FDR"]

SubCortVol.Meta.F$Label              <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F ,"Label"]
SubCortVol.Meta.F$ElementDescription <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"ElementDescription"]
SubCortVol.Meta.F$Std.Beta           <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"Beta_Predictor"]
SubCortVol.Meta.F$Std_p.value        <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"FDR"]

CortThick.Meta.F$Label               <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"Label"]
CortThick.Meta.F$ElementDescription  <-CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"ElementDescription"]
CortThick.Meta.F$Std.Beta            <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"Beta_Predictor"]
CortThick.Meta.F$Std_p.value         <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"FDR"]

CortArea.Meta.F$Label                <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"Label"]
CortArea.Meta.F$ElementDescription   <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"ElementDescription"]
CortArea.Meta.F$Std.Beta             <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"Beta_Predictor"]
CortArea.Meta.F$Std_p.value          <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"FDR"]

SulcalDepth.Meta.F$Label              <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"Label"]
SulcalDepth.Meta.F$ElementDescription <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"ElementDescription"]
SulcalDepth.Meta.F$Std.Beta           <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"Beta_Predictor"]
SulcalDepth.Meta.F$Std_p.value        <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"FDR"]

Meta_Betas.F <- rbind(CortVol.Meta.F, SubCortVol.Meta.F, CortThick.Meta.F, CortArea.Meta.F, SulcalDepth.Meta.F)

# Boys
CortVol.Meta.M$Label                 <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"Label"]
CortVol.Meta.M$ElementDescription    <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"ElementDescription"]
CortVol.Meta.M$Std.Beta              <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"Beta_Predictor"]
CortVol.Meta.M$Std_p.value           <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"FDR"]

SubCortVol.Meta.M$Label              <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M ,"Label"]
SubCortVol.Meta.M$ElementDescription <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"ElementDescription"]
SubCortVol.Meta.M$Std.Beta           <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"Beta_Predictor"]
SubCortVol.Meta.M$Std_p.value        <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"FDR"]

CortThick.Meta.M$Label               <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"Label"]
CortThick.Meta.M$ElementDescription  <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"ElementDescription"]
CortThick.Meta.M$Std.Beta            <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"Beta_Predictor"]
CortThick.Meta.M$Std_p.value         <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"FDR"]

CortArea.Meta.M$Label                <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"Label"]
CortArea.Meta.M$ElementDescription   <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"ElementDescription"]
CortArea.Meta.M$Std.Beta             <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"Beta_Predictor"]
CortArea.Meta.M$Std_p.value          <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"FDR"]

SulcalDepth.Meta.M$Label              <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"Label"]
SulcalDepth.Meta.M$ElementDescription <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"ElementDescription"]
SulcalDepth.Meta.M$Std.Beta           <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"Beta_Predictor"]
SulcalDepth.Meta.M$Std_p.value        <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"FDR"]

Meta_Betas.M <- rbind(CortVol.Meta.M, SubCortVol.Meta.M,CortThick.Meta.M, SulcalDepth.Meta.M)#CortArea.Meta.M not sig

plotMeta.M <- ggplot(data = Meta_Betas.M,aes(y = reorder(ElementDescription, PooledBeta),x =  PooledBeta))+
    geom_point(shape=23, fill="black",size=3)+
    geom_errorbar(aes(xmin=ci.lb, xmax=ci.ub), colour="black", width=.1)+
    labs(x="Pooled Beta", y="Brain Data Modalities and Regions", title = 'Males' )+
    geom_vline(xintercept = 0, size=1.25)+
    coord_cartesian(xlim = c(-.14,.14))+
    theme_bw()+
    theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_text(size = 8))

plotMeta.F <- ggplot(data = Meta_Betas.F,aes(y = reorder(ElementDescription, PooledBeta),x =  PooledBeta))+
    geom_point(shape=23, fill="black",size=3)+
    geom_errorbar(aes(xmin=ci.lb, xmax=ci.ub), colour="black", width=.1)+
    labs(x="Pooled Beta", y="Brain Data Modalities and Regions", title = 'Females')+
    geom_vline(xintercept = 0, size=1.25)+
    coord_cartesian(xlim = c(-.14,.14))+
    theme_bw()+
    theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_text(size = 8))

grid.arrange(plotMeta.F, plotMeta.M, ncol=2)

jpeg(filename = "Figure3C.jpg", height = 6,width = 12, units = 'in', res = 600)
grid.arrange(plotMeta.F, plotMeta.M, ncol=2)
dev.off()
## png 
##   2

eTable 1 - Analytic Sample Sizes and Prevalence of Adverse Prenatal Exposures

Prepare results for eTable 1

## Preparing Labels
Prenatal.vars <- Hmisc::Cs(devhx_6_p,               # Unplanned pregnancy
                           devhx_13_3_p,            # C-section 
                           A_Burden_Gestational_Age,
                           A_index_birth_weight,
                           devhx_8_tobacco,
                           devhx_8_alcohol,
                           devhx_8_marijuana,
                           A_Burden_Pregnan_Complications,
                           A_Burden_Birth_Complications)

Prenatal.labels <- c("Unplanned pregnancy",
                    "C-Section",
                    "Gestational Age",
                    "Birth weight",
                    "Tobacco use",
                    "Alcohol use",
                    "Marijuana use",
                    "Pregnancy complications",
                    "Birth complications")


prenatal.adv.f <- propfunc(abcd.f[,Prenatal.vars])
prenatal.adv.f <- prenatal.adv.f[prenatal.adv.f$Values==1,]
prenatal.adv.f <- prenatal.adv.f[,3:4] # for n and percentagem
rownames(prenatal.adv.f) <- c("Unplanned pregnancy","C-Section","Gestational Age","Low birth weight","Tobacco use","Alcohol use","Marijuana use","Pregnancy complications", "Birth complications" )

prenatal.adv.m <- propfunc(abcd.m[,Prenatal.vars])
prenatal.adv.m <- prenatal.adv.m[prenatal.adv.m$Values==1,]
prenatal.adv.m <- prenatal.adv.m[,3:4] # for n and percentagem
rownames(prenatal.adv.m) <- c("Unplanned pregnancy","C-Section","Gestational Age","Low birth weight","Tobacco use","Alcohol use","Marijuana use","Pregnancy complications", "Birth complications" )

#Saving eTable1
write.xlsx(x = cbind(prenatal.adv.f,prenatal.adv.m),
           file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
           sheetName = 'eTable1',
           row.names = T,
           showNA = F, 
           append = T
           )

Create eTable 1

kable(cbind(prenatal.adv.f,prenatal.adv.m), digits = 2 , caption = "eTable1. Prevalence of Adverse Prenatal Exposures")  %>% 
  add_header_above(c("Prenatal Exposure", "Females" = 2, "Males" =2), color="black") %>% 
  kableExtra::kable_styling(position = "center")
eTable1. Prevalence of Adverse Prenatal Exposures
Prenatal Exposure
Females
Males
N % N %
Unplanned pregnancy 1270 36.22 1291 33.90
C-Section 1286 36.68 1487 39.05
Gestational Age 504 14.38 567 14.89
Low birth weight 523 14.92 548 14.39
Tobacco use 413 11.78 472 12.39
Alcohol use 954 27.21 989 25.97
Marijuana use 194 5.53 189 4.96
Pregnancy complications 1529 43.61 1634 42.91
Birth complications 926 26.41 1156 30.36

eTable2 - List of Associations between Prenatal Adverse Exposures and Brain Regions

Prepare results for eTable2

#Saving eTable2
write.xlsx(x = cbind(Main_results.F[,-c(1,3)], Main_results.M[,6:11]),#Omit Main effect ID and Aliases
           file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
           sheetName = 'eTable2',
           row.names = F,
           showNA = F, 
           append = T
           )

Create eTable2

kable( cbind(Main_results.F[,-c(1,3)], Main_results.M[,6:11]),#Omit Main effect ID and Aliases
      caption = 'eTable 2 - List of Associations between Prenatal Adverse Exposures and Brain Regions',
      digits = 3
      ) %>% 
  add_header_above(c(" "= 3, "Females" = 6, "Males"=6)) %>% 
  kable_styling(position = "center")
eTable 2 - List of Associations between Prenatal Adverse Exposures and Brain Regions
Females
Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.061 0.017 3371 0.139 0.000 0.014 -0.035 0.017 3644 0.124 0.043 0.216
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.020 0.017 3371 0.161 0.248 0.698 0.000 0.017 3644 0.151 0.992 0.992
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal A_Prenatal_Burden_Score_z 0.010 0.017 3371 0.198 0.554 0.856 -0.022 0.016 3644 0.203 0.169 0.371
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus A_Prenatal_Burden_Score_z -0.015 0.017 3371 0.146 0.371 0.716 -0.024 0.017 3644 0.158 0.151 0.355
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal A_Prenatal_Burden_Score_z -0.005 0.017 3371 0.080 0.762 0.919 -0.010 0.017 3644 0.058 0.542 0.672
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform A_Prenatal_Burden_Score_z -0.013 0.016 3371 0.198 0.401 0.718 -0.031 0.016 3644 0.208 0.048 0.216
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.054 0.016 3371 0.287 0.001 0.014 -0.038 0.016 3644 0.288 0.016 0.160
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal A_Prenatal_Burden_Score_z -0.006 0.015 3371 0.246 0.672 0.901 0.017 0.015 3644 0.258 0.247 0.430
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate A_Prenatal_Burden_Score_z 0.008 0.016 3371 0.213 0.636 0.901 0.002 0.016 3644 0.172 0.909 0.937
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital A_Prenatal_Burden_Score_z 0.035 0.015 3371 0.357 0.021 0.144 0.021 0.015 3644 0.308 0.183 0.376
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.004 0.014 3371 0.410 0.794 0.919 -0.020 0.014 3644 0.421 0.160 0.362
smri_vol_cdk_linguallh Cortical volume lh-lingual A_Prenatal_Burden_Score_z -0.037 0.017 3371 0.140 0.028 0.160 -0.005 0.017 3644 0.155 0.751 0.818
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.051 0.015 3371 0.009 0.001 0.014 -0.011 0.015 3644 0.048 0.486 0.636
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal A_Prenatal_Burden_Score_z -0.035 0.015 3371 0.356 0.021 0.144 -0.020 0.015 3644 0.365 0.178 0.376
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal A_Prenatal_Burden_Score_z -0.003 0.018 3371 0.100 0.851 0.919 -0.002 0.017 3644 0.118 0.909 0.937
smri_vol_cdk_paracnlh Cortical volume lh-paracentral A_Prenatal_Burden_Score_z -0.005 0.017 3371 0.193 0.788 0.919 -0.037 0.017 3644 0.186 0.028 0.170
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis A_Prenatal_Burden_Score_z -0.007 0.017 3371 0.182 0.678 0.901 0.005 0.017 3644 0.140 0.758 0.818
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis A_Prenatal_Burden_Score_z -0.002 0.017 3371 0.182 0.913 0.956 -0.025 0.016 3644 0.194 0.125 0.353
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis A_Prenatal_Burden_Score_z -0.008 0.018 3371 0.095 0.673 0.901 -0.035 0.018 3644 0.101 0.045 0.216
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine A_Prenatal_Burden_Score_z -0.018 0.017 3371 0.159 0.300 0.716 -0.025 0.017 3644 0.197 0.141 0.355
smri_vol_cdk_postcnlh Cortical volume lh-postcentral A_Prenatal_Burden_Score_z -0.006 0.016 3371 0.326 0.710 0.911 -0.034 0.015 3644 0.332 0.025 0.170
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate A_Prenatal_Burden_Score_z -0.019 0.016 3371 0.264 0.231 0.682 -0.021 0.016 3644 0.231 0.205 0.388
smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.005 0.015 3371 0.359 0.764 0.919 -0.045 0.015 3644 0.375 0.002 0.039
smri_vol_cdk_pclh Cortical volume lh-precuneus A_Prenatal_Burden_Score_z -0.007 0.014 3371 0.377 0.622 0.900 -0.009 0.015 3644 0.362 0.528 0.672
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.015 0.016 3371 0.281 0.344 0.716 -0.012 0.016 3644 0.294 0.454 0.605
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal A_Prenatal_Burden_Score_z -0.012 0.015 3371 0.355 0.432 0.730 -0.009 0.015 3644 0.368 0.550 0.672
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal A_Prenatal_Burden_Score_z 0.003 0.014 3371 0.360 0.813 0.919 -0.027 0.013 3644 0.404 0.044 0.216
smri_vol_cdk_supllh Cortical volume lh-superiorparietal A_Prenatal_Burden_Score_z -0.031 0.016 3371 0.317 0.049 0.224 -0.014 0.016 3644 0.294 0.358 0.527
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal A_Prenatal_Burden_Score_z -0.012 0.015 3371 0.358 0.440 0.730 -0.008 0.015 3644 0.364 0.601 0.711
smri_vol_cdk_smlh Cortical volume lh-supramarginal A_Prenatal_Burden_Score_z -0.026 0.016 3371 0.323 0.090 0.342 -0.016 0.015 3644 0.359 0.275 0.456
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole A_Prenatal_Burden_Score_z 0.036 0.018 3371 0.107 0.041 0.200 0.033 0.018 3644 0.100 0.060 0.240
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole A_Prenatal_Burden_Score_z -0.004 0.018 3371 0.044 0.816 0.919 0.009 0.018 3644 0.042 0.628 0.711
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal A_Prenatal_Burden_Score_z 0.012 0.017 3371 0.166 0.504 0.796 -0.032 0.017 3644 0.154 0.064 0.240
smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.046 0.015 3371 0.307 0.002 0.027 -0.017 0.014 3644 0.325 0.241 0.430
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.029 0.017 3371 0.144 0.093 0.342 -0.015 0.017 3644 0.136 0.364 0.527
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z -0.015 0.018 3371 0.090 0.390 0.716 0.015 0.018 3644 0.082 0.410 0.569
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal A_Prenatal_Burden_Score_z -0.004 0.017 3371 0.167 0.830 0.919 -0.024 0.016 3644 0.183 0.131 0.353
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus A_Prenatal_Burden_Score_z 0.003 0.017 3371 0.233 0.850 0.919 -0.003 0.017 3644 0.201 0.845 0.898
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal A_Prenatal_Burden_Score_z 0.002 0.018 3371 0.106 0.889 0.945 -0.009 0.018 3644 0.088 0.614 0.711
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform A_Prenatal_Burden_Score_z -0.029 0.016 3371 0.290 0.066 0.282 -0.019 0.015 3644 0.307 0.203 0.388
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal A_Prenatal_Burden_Score_z -0.032 0.016 3371 0.305 0.041 0.200 -0.027 0.015 3644 0.288 0.086 0.278
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal A_Prenatal_Burden_Score_z 0.011 0.016 3371 0.278 0.469 0.760 0.012 0.015 3644 0.286 0.418 0.569
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate A_Prenatal_Burden_Score_z -0.016 0.017 3371 0.104 0.339 0.716 -0.030 0.017 3644 0.142 0.068 0.240
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital A_Prenatal_Burden_Score_z 0.001 0.015 3371 0.382 0.970 0.974 0.014 0.015 3644 0.357 0.360 0.527
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.019 0.014 3371 0.154 0.168 0.544 -0.034 0.014 3644 0.199 0.015 0.160
smri_vol_cdk_lingualrh Cortical volume rh-lingual A_Prenatal_Burden_Score_z -0.015 0.017 3371 0.200 0.383 0.716 -0.023 0.016 3644 0.195 0.150 0.355
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.048 0.016 3371 0.172 0.003 0.034 0.031 0.016 3644 0.180 0.051 0.216
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.051 0.014 3371 0.420 0.000 0.014 -0.044 0.014 3644 0.411 0.002 0.039
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal A_Prenatal_Burden_Score_z -0.007 0.017 3371 0.208 0.689 0.901 0.014 0.017 3644 0.185 0.382 0.541
smri_vol_cdk_paracnrh Cortical volume rh-paracentral A_Prenatal_Burden_Score_z 0.009 0.017 3371 0.155 0.603 0.891 -0.046 0.017 3644 0.169 0.006 0.086
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis A_Prenatal_Burden_Score_z -0.015 0.017 3371 0.150 0.375 0.716 -0.007 0.017 3644 0.140 0.664 0.741
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis A_Prenatal_Burden_Score_z 0.019 0.017 3371 0.190 0.257 0.698 -0.022 0.017 3644 0.202 0.189 0.379
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis A_Prenatal_Burden_Score_z -0.018 0.018 3371 0.094 0.332 0.716 -0.029 0.018 3644 0.092 0.097 0.299
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine A_Prenatal_Burden_Score_z -0.016 0.017 3371 0.193 0.340 0.716 -0.017 0.017 3644 0.186 0.318 0.504
smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.035 0.016 3371 0.301 0.026 0.160 -0.048 0.016 3644 0.293 0.002 0.039
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate A_Prenatal_Burden_Score_z -0.015 0.017 3371 0.180 0.361 0.716 -0.025 0.017 3644 0.186 0.135 0.353
smri_vol_cdk_precnrh Cortical volume rh-precentral A_Prenatal_Burden_Score_z -0.019 0.015 3371 0.324 0.213 0.657 -0.027 0.015 3644 0.333 0.070 0.240
smri_vol_cdk_pcrh Cortical volume rh-precuneus A_Prenatal_Burden_Score_z -0.004 0.015 3371 0.340 0.787 0.919 -0.009 0.014 3644 0.353 0.553 0.672
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.029 0.017 3371 0.134 0.096 0.342 -0.026 0.017 3644 0.145 0.119 0.353
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.015 0.015 3371 0.293 0.327 0.716 -0.015 0.015 3644 0.294 0.319 0.504
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal A_Prenatal_Burden_Score_z 0.001 0.014 3371 0.317 0.960 0.974 -0.013 0.013 3644 0.353 0.344 0.527
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal A_Prenatal_Burden_Score_z -0.001 0.016 3371 0.312 0.974 0.974 -0.008 0.015 3644 0.301 0.620 0.711
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal A_Prenatal_Burden_Score_z 0.008 0.015 3371 0.295 0.580 0.877 0.000 0.014 3644 0.333 0.976 0.991
smri_vol_cdk_smrh Cortical volume rh-supramarginal A_Prenatal_Burden_Score_z -0.026 0.016 3371 0.285 0.103 0.350 -0.018 0.015 3644 0.308 0.239 0.430
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole A_Prenatal_Burden_Score_z 0.014 0.018 3371 0.109 0.415 0.723 0.040 0.017 3644 0.127 0.020 0.166
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.049 0.018 3371 0.093 0.007 0.070 0.068 0.018 3644 0.076 0.000 0.009
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal A_Prenatal_Burden_Score_z -0.018 0.017 3371 0.105 0.294 0.716 -0.038 0.017 3644 0.111 0.023 0.170
smri_vol_cdk_insularh Cortical volume rh-insula A_Prenatal_Burden_Score_z -0.038 0.015 3371 0.343 0.011 0.095 -0.016 0.014 3644 0.366 0.275 0.456
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle A_Prenatal_Burden_Score 0.024 0.012 3371 0.078 0.044 0.212 0.015 0.012 3644 0.055 0.211 0.844
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex A_Prenatal_Burden_Score -0.028 0.010 3371 0.342 0.006 0.056 0.001 0.010 3644 0.336 0.957 0.993
smri_vol_scs_tplh Subcortical volume left-thalamus-proper A_Prenatal_Burden_Score -0.016 0.008 3371 0.568 0.058 0.212 -0.012 0.008 3644 0.560 0.145 0.726
smri_vol_scs_caudatelh Subcortical volume left-caudate A_Prenatal_Burden_Score -0.006 0.011 3371 0.240 0.566 0.809 -0.004 0.011 3644 0.245 0.702 0.937
smri_vol_scs_putamenlh Subcortical volume left-putamen A_Prenatal_Burden_Score -0.008 0.011 3371 0.268 0.480 0.800 0.006 0.011 3644 0.251 0.587 0.937
smri_vol_scs_pallidumlh Subcortical volume left-pallidum A_Prenatal_Burden_Score -0.015 0.011 3371 0.182 0.184 0.335 -0.005 0.011 3644 0.168 0.676 0.937
smri_vol_scs_hpuslh Subcortical volume left-hippocampus A_Prenatal_Burden_Score 0.007 0.010 3371 0.318 0.527 0.809 -0.006 0.010 3644 0.328 0.560 0.937
smri_vol_scs_amygdalalh Subcortical volume left-amygdala A_Prenatal_Burden_Score 0.002 0.010 3371 0.282 0.850 0.964 0.000 0.010 3644 0.293 0.964 0.993
smri_vol_scs_aal Subcortical volume left-accumbens-area A_Prenatal_Burden_Score -0.017 0.010 3371 0.000 0.107 0.268 -0.027 0.010 3644 0.020 0.007 0.149
smri_vol_scs_vedclh Subcortical volume left-ventraldc A_Prenatal_Burden_Score 0.000 0.009 3371 0.461 0.964 0.964 0.001 0.009 3644 0.488 0.929 0.993
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle A_Prenatal_Burden_Score 0.020 0.012 3371 0.070 0.095 0.268 0.024 0.012 3644 0.058 0.042 0.418
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex A_Prenatal_Burden_Score -0.019 0.010 3371 0.285 0.064 0.212 -0.001 0.010 3644 0.263 0.945 0.993
smri_vol_scs_tprh Subcortical volume right-thalamus-proper A_Prenatal_Burden_Score -0.034 0.009 3371 0.461 0.000 0.006 -0.014 0.009 3644 0.433 0.118 0.726
smri_vol_scs_caudaterh Subcortical volume right-caudate A_Prenatal_Burden_Score 0.000 0.011 3371 0.197 0.963 0.964 -0.006 0.011 3644 0.208 0.549 0.937
smri_vol_scs_putamenrh Subcortical volume right-putamen A_Prenatal_Burden_Score -0.005 0.011 3371 0.223 0.617 0.823 0.006 0.011 3644 0.246 0.573 0.937
smri_vol_scs_pallidumrh Subcortical volume right-pallidum A_Prenatal_Burden_Score -0.026 0.011 3371 0.062 0.016 0.105 -0.008 0.011 3644 0.086 0.444 0.937
smri_vol_scs_hpusrh Subcortical volume right-hippocampus A_Prenatal_Burden_Score -0.001 0.010 3371 0.359 0.896 0.964 -0.010 0.010 3644 0.358 0.290 0.937
smri_vol_scs_amygdalarh Subcortical volume right-amygdala A_Prenatal_Burden_Score -0.002 0.010 3371 0.220 0.853 0.964 0.000 0.010 3644 0.256 0.993 0.993
smri_vol_scs_aar Subcortical volume right-accumbens area A_Prenatal_Burden_Score -0.015 0.011 3371 0.131 0.170 0.335 -0.010 0.010 3644 0.127 0.335 0.937
smri_vol_scs_vedcrh Subcortical volume right-ventraldc A_Prenatal_Burden_Score 0.013 0.009 3371 0.345 0.168 0.335 0.004 0.009 3644 0.379 0.703 0.937
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.054 0.016 3371 0.300 0.001 0.010 -0.034 0.015 3644 0.291 0.026 0.135
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.039 0.018 3371 0.132 0.026 0.174 -0.003 0.017 3644 0.135 0.871 0.911
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal A_Prenatal_Burden_Score_z -0.017 0.013 3371 0.479 0.205 0.506 -0.016 0.013 3644 0.510 0.196 0.380
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus A_Prenatal_Burden_Score_z -0.013 0.016 3371 0.265 0.412 0.710 0.009 0.015 3644 0.280 0.568 0.690
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal A_Prenatal_Burden_Score_z 0.041 0.018 3371 0.041 0.023 0.172 -0.018 0.017 3644 0.058 0.302 0.466
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform A_Prenatal_Burden_Score_z 0.004 0.013 3371 0.410 0.781 0.928 -0.003 0.013 3644 0.387 0.821 0.886
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal A_Prenatal_Burden_Score_z -0.019 0.011 3371 0.645 0.071 0.289 -0.027 0.010 3644 0.633 0.008 0.059
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal A_Prenatal_Burden_Score_z 0.010 0.013 3371 0.479 0.474 0.767 0.007 0.013 3644 0.462 0.628 0.724
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate A_Prenatal_Burden_Score_z 0.028 0.018 3371 0.099 0.118 0.381 0.022 0.018 3644 0.103 0.218 0.401
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital A_Prenatal_Burden_Score_z -0.001 0.011 3371 0.582 0.919 0.995 0.020 0.011 3644 0.592 0.062 0.202
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.068 0.014 3371 0.403 0.000 0.000 0.045 0.014 3644 0.403 0.002 0.035
smri_thick_cdk_linguallh Cortical thickness lh-lingual A_Prenatal_Burden_Score_z -0.007 0.015 3371 0.151 0.666 0.880 0.022 0.014 3644 0.182 0.123 0.323
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.062 0.016 3371 0.051 0.000 0.004 0.032 0.016 3644 0.073 0.041 0.164
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.037 0.013 3371 0.508 0.005 0.049 -0.027 0.013 3644 0.502 0.036 0.162
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal A_Prenatal_Burden_Score_z 0.032 0.018 3371 0.074 0.072 0.289 -0.001 0.018 3644 0.078 0.973 0.989
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral A_Prenatal_Burden_Score_z 0.012 0.013 3371 0.507 0.346 0.630 -0.023 0.013 3644 0.519 0.079 0.234
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis A_Prenatal_Burden_Score_z -0.001 0.014 3371 0.471 0.939 0.995 -0.003 0.014 3644 0.465 0.852 0.906
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis A_Prenatal_Burden_Score_z -0.018 0.016 3371 0.290 0.254 0.539 -0.028 0.016 3644 0.271 0.067 0.207
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis A_Prenatal_Burden_Score_z -0.017 0.015 3371 0.402 0.234 0.514 -0.034 0.014 3644 0.422 0.015 0.094
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine A_Prenatal_Burden_Score_z 0.020 0.016 3371 0.195 0.223 0.506 0.018 0.016 3644 0.192 0.262 0.432
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral A_Prenatal_Burden_Score_z -0.002 0.013 3371 0.534 0.851 0.978 -0.018 0.012 3644 0.542 0.149 0.348
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.010 0.017 3371 0.166 0.552 0.823 0.005 0.017 3644 0.159 0.789 0.866
smri_thick_cdk_precnlh Cortical thickness lh-precentral A_Prenatal_Burden_Score_z 0.000 0.012 3371 0.622 0.982 0.996 -0.018 0.011 3644 0.632 0.110 0.310
smri_thick_cdk_pclh Cortical thickness lh-precuneus A_Prenatal_Burden_Score_z -0.012 0.012 3371 0.583 0.314 0.628 -0.016 0.012 3644 0.587 0.175 0.360
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.034 0.017 3371 0.159 0.046 0.240 0.031 0.016 3644 0.192 0.057 0.202
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal A_Prenatal_Burden_Score_z -0.017 0.011 3371 0.652 0.132 0.407 0.010 0.010 3644 0.662 0.322 0.487
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal A_Prenatal_Burden_Score_z 0.006 0.011 3371 0.657 0.575 0.832 0.010 0.011 3644 0.664 0.343 0.496
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal A_Prenatal_Burden_Score_z -0.004 0.010 3371 0.689 0.673 0.880 -0.027 0.010 3644 0.689 0.007 0.059
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal A_Prenatal_Burden_Score_z -0.005 0.013 3371 0.550 0.717 0.903 0.014 0.012 3644 0.555 0.247 0.431
smri_thick_cdk_smlh Cortical thickness lh-supramarginal A_Prenatal_Burden_Score_z -0.010 0.011 3371 0.589 0.352 0.630 -0.010 0.010 3644 0.612 0.343 0.496
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.065 0.017 3371 0.161 0.000 0.004 0.027 0.017 3644 0.135 0.115 0.313
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole A_Prenatal_Burden_Score_z 0.018 0.017 3371 0.153 0.285 0.587 0.043 0.017 3644 0.178 0.010 0.066
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal A_Prenatal_Burden_Score_z -0.028 0.016 3371 0.264 0.080 0.289 -0.001 0.016 3644 0.222 0.974 0.989
smri_thick_cdk_insulalh Cortical thickness lh-insula A_Prenatal_Burden_Score_z 0.020 0.016 3371 0.130 0.210 0.506 -0.013 0.016 3644 0.116 0.403 0.547
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.033 0.016 3371 0.301 0.037 0.229 -0.033 0.015 3644 0.310 0.031 0.150
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.014 0.018 3371 0.055 0.444 0.736 0.055 0.018 3644 0.056 0.002 0.040
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal A_Prenatal_Burden_Score_z -0.027 0.014 3371 0.474 0.050 0.245 -0.016 0.013 3644 0.501 0.229 0.409
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus A_Prenatal_Burden_Score_z -0.002 0.016 3371 0.304 0.903 0.995 -0.005 0.015 3644 0.306 0.743 0.828
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal A_Prenatal_Burden_Score_z 0.042 0.018 3371 0.057 0.021 0.172 -0.009 0.018 3644 0.073 0.603 0.706
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform A_Prenatal_Burden_Score_z 0.007 0.013 3371 0.522 0.597 0.845 0.017 0.013 3644 0.527 0.172 0.360
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal A_Prenatal_Burden_Score_z -0.005 0.010 3371 0.663 0.635 0.869 -0.011 0.010 3644 0.677 0.267 0.432
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal A_Prenatal_Burden_Score_z -0.002 0.013 3371 0.525 0.863 0.978 0.011 0.013 3644 0.527 0.379 0.533
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate A_Prenatal_Burden_Score_z 0.018 0.019 3371 0.053 0.339 0.630 0.027 0.018 3644 0.048 0.133 0.324
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital A_Prenatal_Burden_Score_z 0.009 0.011 3371 0.589 0.418 0.710 0.022 0.011 3644 0.612 0.038 0.162
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.021 0.015 3371 0.227 0.146 0.432 0.040 0.014 3644 0.210 0.006 0.059
smri_thick_cdk_lingualrh Cortical thickness rh-lingual A_Prenatal_Burden_Score_z 0.001 0.015 3371 0.195 0.941 0.995 -0.010 0.015 3644 0.175 0.491 0.622
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.054 0.016 3371 0.103 0.001 0.011 0.079 0.015 3644 0.146 0.000 0.000
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.037 0.012 3371 0.540 0.002 0.019 -0.033 0.012 3644 0.544 0.004 0.046
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal A_Prenatal_Burden_Score_z 0.023 0.018 3371 0.125 0.186 0.506 -0.012 0.017 3644 0.142 0.469 0.613
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral A_Prenatal_Burden_Score_z 0.000 0.014 3371 0.435 0.977 0.996 -0.017 0.014 3644 0.430 0.204 0.385
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis A_Prenatal_Burden_Score_z 0.018 0.015 3371 0.404 0.205 0.506 0.019 0.014 3644 0.398 0.188 0.376
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis A_Prenatal_Burden_Score_z -0.020 0.016 3371 0.292 0.216 0.506 -0.031 0.016 3644 0.245 0.053 0.200
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis A_Prenatal_Burden_Score_z 0.008 0.014 3371 0.454 0.557 0.823 -0.018 0.013 3644 0.463 0.164 0.360
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine A_Prenatal_Burden_Score_z 0.004 0.016 3371 0.171 0.789 0.928 -0.009 0.016 3644 0.154 0.602 0.706
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral A_Prenatal_Burden_Score_z -0.023 0.014 3371 0.447 0.097 0.329 -0.011 0.013 3644 0.478 0.384 0.533
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate A_Prenatal_Burden_Score_z 0.007 0.018 3371 0.103 0.691 0.887 0.041 0.018 3644 0.102 0.019 0.107
smri_thick_cdk_precnrh Cortical thickness rh-precentral A_Prenatal_Burden_Score_z -0.003 0.013 3371 0.553 0.792 0.928 -0.018 0.012 3644 0.591 0.129 0.324
smri_thick_cdk_pcrh Cortical thickness rh-precuneus A_Prenatal_Burden_Score_z -0.016 0.013 3371 0.509 0.211 0.506 0.009 0.013 3644 0.480 0.494 0.622
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.005 0.017 3371 0.000 0.781 0.928 0.050 0.017 3644 -0.003 0.003 0.045
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.000 0.012 3371 0.602 0.996 0.996 0.000 0.011 3644 0.587 0.990 0.990
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal A_Prenatal_Burden_Score_z 0.007 0.012 3371 0.580 0.549 0.823 0.004 0.011 3644 0.577 0.713 0.808
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal A_Prenatal_Burden_Score_z -0.005 0.011 3371 0.661 0.639 0.869 -0.011 0.011 3644 0.671 0.297 0.466
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal A_Prenatal_Burden_Score_z 0.012 0.013 3371 0.562 0.343 0.630 0.008 0.012 3644 0.547 0.535 0.661
smri_thick_cdk_smrh Cortical thickness rh-supramarginal A_Prenatal_Burden_Score_z -0.006 0.011 3371 0.541 0.552 0.823 0.008 0.010 3644 0.576 0.410 0.547
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.035 0.017 3371 0.162 0.046 0.240 0.059 0.017 3644 0.160 0.000 0.015
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole A_Prenatal_Burden_Score_z 0.030 0.017 3371 0.201 0.072 0.289 0.031 0.017 3644 0.192 0.060 0.202
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal A_Prenatal_Burden_Score_z -0.028 0.016 3371 0.150 0.081 0.289 -0.022 0.016 3644 0.119 0.157 0.357
smri_thick_cdk_insularh Cortical thickness rh-insula A_Prenatal_Burden_Score_z -0.001 0.017 3371 0.192 0.951 0.995 -0.018 0.016 3644 0.191 0.261 0.432
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.042 0.017 3371 0.242 0.011 0.121 -0.020 0.016 3644 0.207 0.224 0.697
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.016 0.016 3371 0.279 0.316 0.537 0.018 0.016 3644 0.242 0.273 0.697
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal A_Prenatal_Burden_Score_z 0.025 0.014 3371 0.427 0.078 0.356 -0.001 0.014 3644 0.420 0.936 0.978
smri_area_cdk_cuneuslh Cortical area lh-cuneus A_Prenatal_Burden_Score_z -0.002 0.016 3371 0.261 0.903 0.930 -0.027 0.016 3644 0.231 0.100 0.679
smri_area_cdk_ehinallh Cortical area lh-entorhinal A_Prenatal_Burden_Score_z -0.023 0.017 3371 0.172 0.182 0.441 0.001 0.017 3644 0.147 0.958 0.978
smri_area_cdk_fusiformlh Cortical area lh-fusiform A_Prenatal_Burden_Score_z -0.012 0.014 3371 0.445 0.410 0.606 -0.015 0.014 3644 0.447 0.264 0.697
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal A_Prenatal_Burden_Score_z -0.036 0.014 3371 0.471 0.008 0.115 -0.008 0.014 3644 0.430 0.561 0.874
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal A_Prenatal_Burden_Score_z -0.012 0.013 3371 0.513 0.362 0.573 0.019 0.013 3644 0.511 0.148 0.697
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate A_Prenatal_Burden_Score_z 0.009 0.015 3371 0.357 0.575 0.686 0.011 0.015 3644 0.364 0.478 0.874
smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.043 0.014 3371 0.462 0.002 0.045 0.026 0.014 3644 0.417 0.065 0.679
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.018 0.013 3371 0.454 0.174 0.441 -0.022 0.013 3644 0.488 0.085 0.679
smri_area_cdk_linguallh Cortical area lh-lingual A_Prenatal_Burden_Score_z -0.040 0.016 3371 0.249 0.014 0.128 -0.009 0.016 3644 0.262 0.558 0.874
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.022 0.014 3371 0.417 0.119 0.441 -0.010 0.014 3644 0.421 0.474 0.874
smri_area_cdk_mdtmlh Cortical area lh-middletemporal A_Prenatal_Burden_Score_z -0.009 0.013 3371 0.534 0.498 0.679 0.010 0.013 3644 0.531 0.420 0.874
smri_area_cdk_parahpallh Cortical area lh-parahippocampal A_Prenatal_Burden_Score_z -0.021 0.017 3371 0.151 0.225 0.493 0.001 0.017 3644 0.185 0.973 0.978
smri_area_cdk_paracnlh Cortical area lh-paracentral A_Prenatal_Burden_Score_z 0.010 0.016 3371 0.253 0.559 0.679 -0.010 0.016 3644 0.242 0.538 0.874
smri_area_cdk_parsopclh Cortical area lh-parsopercularis A_Prenatal_Burden_Score_z -0.005 0.015 3371 0.306 0.729 0.800 0.020 0.016 3644 0.262 0.200 0.697
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis A_Prenatal_Burden_Score_z 0.035 0.015 3371 0.367 0.020 0.128 0.015 0.014 3644 0.396 0.287 0.697
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis A_Prenatal_Burden_Score_z 0.001 0.017 3371 0.222 0.965 0.965 -0.013 0.016 3644 0.238 0.409 0.874
smri_area_cdk_pericclh Cortical area lh-pericalcarine A_Prenatal_Burden_Score_z -0.033 0.018 3371 0.144 0.058 0.302 -0.033 0.017 3644 0.174 0.045 0.616
smri_area_cdk_postcnlh Cortical area lh-postcentral A_Prenatal_Burden_Score_z -0.001 0.013 3371 0.547 0.965 0.965 -0.008 0.013 3644 0.536 0.545 0.874
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate A_Prenatal_Burden_Score_z -0.014 0.016 3371 0.284 0.390 0.589 -0.005 0.016 3644 0.255 0.774 0.877
smri_area_cdk_precnlh Cortical area lh-precentral A_Prenatal_Burden_Score_z 0.009 0.013 3371 0.503 0.517 0.679 -0.019 0.013 3644 0.520 0.131 0.697
smri_area_cdk_pclh Cortical area lh-precuneus A_Prenatal_Burden_Score_z 0.008 0.013 3371 0.513 0.553 0.679 0.016 0.013 3644 0.485 0.223 0.697
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.005 0.014 3371 0.404 0.720 0.800 -0.001 0.014 3644 0.394 0.938 0.978
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.017 0.012 3371 0.616 0.143 0.441 0.004 0.012 3644 0.604 0.753 0.874
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal A_Prenatal_Burden_Score_z 0.018 0.010 3371 0.703 0.078 0.356 0.000 0.010 3644 0.712 0.978 0.978
smri_area_cdk_supllh Cortical area lh-superiorparietal A_Prenatal_Burden_Score_z -0.013 0.014 3371 0.486 0.328 0.537 0.016 0.013 3644 0.487 0.242 0.697
smri_area_cdk_sutmlh Cortical area lh-superiortemporal A_Prenatal_Burden_Score_z -0.008 0.013 3371 0.550 0.543 0.679 -0.007 0.012 3644 0.560 0.561 0.874
smri_area_cdk_smlh Cortical area lh-supramarginal A_Prenatal_Burden_Score_z -0.008 0.014 3371 0.475 0.552 0.679 0.007 0.013 3644 0.503 0.572 0.874
smri_area_cdk_frpolelh Cortical area lh-frontalpole A_Prenatal_Burden_Score_z 0.010 0.017 3371 0.145 0.555 0.679 0.034 0.017 3644 0.163 0.044 0.616
smri_area_cdk_tmpolelh Cortical area lh-temporalpole A_Prenatal_Burden_Score_z -0.018 0.017 3371 0.202 0.275 0.519 0.003 0.017 3644 0.199 0.849 0.946
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal A_Prenatal_Burden_Score_z 0.045 0.017 3371 0.235 0.007 0.113 -0.006 0.017 3644 0.203 0.732 0.874
smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.050 0.014 3371 0.406 0.001 0.037 0.005 0.014 3644 0.413 0.718 0.874
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.017 0.016 3371 0.281 0.302 0.537 0.002 0.015 3644 0.307 0.888 0.974
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z -0.018 0.017 3371 0.227 0.291 0.534 0.009 0.017 3644 0.196 0.584 0.874
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal A_Prenatal_Burden_Score_z 0.017 0.015 3371 0.403 0.252 0.519 0.001 0.014 3644 0.404 0.936 0.978
smri_area_cdk_cuneusrh Cortical area rh-cuneus A_Prenatal_Burden_Score_z 0.014 0.016 3371 0.321 0.379 0.585 0.013 0.016 3644 0.291 0.391 0.874
smri_area_cdk_ehinalrh Cortical area rh-entorhinal A_Prenatal_Burden_Score_z -0.018 0.018 3371 0.091 0.314 0.537 -0.007 0.018 3644 0.088 0.699 0.874
smri_area_cdk_fusiformrh Cortical area rh-fusiform A_Prenatal_Burden_Score_z -0.023 0.014 3371 0.449 0.094 0.375 -0.007 0.014 3644 0.438 0.625 0.874
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal A_Prenatal_Burden_Score_z -0.024 0.014 3371 0.480 0.087 0.368 -0.010 0.014 3644 0.452 0.460 0.874
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal A_Prenatal_Burden_Score_z 0.019 0.013 3371 0.507 0.152 0.441 0.015 0.013 3644 0.516 0.245 0.697
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate A_Prenatal_Burden_Score_z -0.017 0.016 3371 0.318 0.270 0.519 -0.018 0.015 3644 0.314 0.255 0.697
smri_area_cdk_loccrh Cortical area rh-lateraloccipital A_Prenatal_Burden_Score_z -0.003 0.014 3371 0.464 0.841 0.894 0.019 0.014 3644 0.429 0.181 0.697
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.017 0.013 3371 0.494 0.209 0.475 -0.047 0.013 3644 0.502 0.000 0.024
smri_area_cdk_lingualrh Cortical area rh-lingual A_Prenatal_Burden_Score_z -0.012 0.016 3371 0.252 0.447 0.647 -0.012 0.015 3644 0.270 0.454 0.874
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.034 0.014 3371 0.454 0.016 0.128 0.006 0.013 3644 0.490 0.653 0.874
smri_area_cdk_mdtmrh Cortical area rh-middletemporal A_Prenatal_Burden_Score_z -0.017 0.012 3371 0.622 0.137 0.441 -0.004 0.012 3644 0.606 0.736 0.874
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal A_Prenatal_Burden_Score_z -0.022 0.017 3371 0.210 0.188 0.441 0.028 0.016 3644 0.179 0.091 0.679
smri_area_cdk_paracnrh Cortical area rh-paracentral A_Prenatal_Burden_Score_z 0.022 0.016 3371 0.248 0.187 0.441 -0.022 0.016 3644 0.252 0.162 0.697
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis A_Prenatal_Burden_Score_z -0.018 0.016 3371 0.286 0.262 0.519 -0.008 0.015 3644 0.268 0.592 0.874
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.050 0.016 3371 0.314 0.001 0.045 0.016 0.015 3644 0.352 0.268 0.697
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis A_Prenatal_Burden_Score_z -0.010 0.017 3371 0.222 0.537 0.679 -0.014 0.016 3644 0.208 0.391 0.874
smri_area_cdk_periccrh Cortical area rh-pericalcarine A_Prenatal_Burden_Score_z -0.024 0.017 3371 0.176 0.164 0.441 -0.007 0.017 3644 0.188 0.684 0.874
smri_area_cdk_postcnrh Cortical area rh-postcentral A_Prenatal_Burden_Score_z -0.018 0.013 3371 0.530 0.171 0.441 -0.028 0.013 3644 0.524 0.032 0.616
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate A_Prenatal_Burden_Score_z -0.008 0.016 3371 0.326 0.589 0.690 -0.022 0.016 3644 0.266 0.172 0.697
smri_area_cdk_precnrh Cortical area rh-precentral A_Prenatal_Burden_Score_z -0.005 0.014 3371 0.455 0.693 0.785 0.006 0.013 3644 0.506 0.650 0.874
smri_area_cdk_pcrh Cortical area rh-precuneus A_Prenatal_Burden_Score_z 0.015 0.013 3371 0.502 0.257 0.519 0.004 0.013 3644 0.481 0.758 0.874
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.015 0.016 3371 0.287 0.332 0.537 -0.026 0.016 3644 0.280 0.092 0.679
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.028 0.012 3371 0.595 0.018 0.128 0.008 0.012 3644 0.591 0.514 0.874
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal A_Prenatal_Burden_Score_z 0.022 0.011 3371 0.685 0.036 0.204 0.008 0.010 3644 0.692 0.463 0.874
smri_area_cdk_suplrh Cortical area rh-superiorparietal A_Prenatal_Burden_Score_z 0.021 0.013 3371 0.500 0.124 0.441 0.017 0.013 3644 0.485 0.197 0.697
smri_area_cdk_sutmrh Cortical area rh-superiortemporal A_Prenatal_Burden_Score_z 0.001 0.012 3371 0.637 0.897 0.930 0.004 0.011 3644 0.643 0.688 0.874
smri_area_cdk_smrh Cortical area rh-supramarginal A_Prenatal_Burden_Score_z -0.003 0.014 3371 0.445 0.819 0.884 -0.004 0.014 3644 0.447 0.750 0.874
smri_area_cdk_frpolerh Cortical area rh-frontalpole A_Prenatal_Burden_Score_z 0.013 0.017 3371 0.187 0.460 0.652 0.018 0.016 3644 0.217 0.279 0.697
smri_area_cdk_tmpolerh Cortical area rh-temporalpole A_Prenatal_Burden_Score_z 0.041 0.018 3371 0.143 0.021 0.128 0.046 0.017 3644 0.126 0.009 0.290
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal A_Prenatal_Burden_Score_z 0.007 0.016 3371 0.284 0.658 0.758 -0.021 0.016 3644 0.257 0.191 0.697
smri_area_cdk_insularh Cortical area rh-insula A_Prenatal_Burden_Score_z -0.021 0.015 3371 0.382 0.159 0.441 0.006 0.014 3644 0.384 0.672 0.874
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.046 0.019 3371 0.007 0.014 0.072 -0.022 0.018 3644 0.003 0.226 0.370
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.011 0.019 3371 0.010 0.574 0.830 0.012 0.018 3644 0.014 0.501 0.643
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal A_Prenatal_Burden_Score_z -0.015 0.019 3371 0.008 0.431 0.699 0.007 0.018 3644 0.008 0.705 0.786
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus A_Prenatal_Burden_Score_z 0.031 0.019 3371 0.012 0.105 0.309 0.025 0.019 3644 0.012 0.169 0.329
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal A_Prenatal_Burden_Score_z -0.044 0.019 3371 0.008 0.019 0.092 -0.025 0.019 3644 0.005 0.184 0.347
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.060 0.019 3371 0.020 0.001 0.024 0.082 0.018 3644 0.026 0.000 0.000
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal A_Prenatal_Burden_Score_z 0.016 0.018 3371 0.028 0.376 0.639 0.004 0.018 3644 0.021 0.819 0.863
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.033 0.019 3371 0.008 0.081 0.275 -0.071 0.018 3644 0.007 0.000 0.002
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate A_Prenatal_Burden_Score_z 0.050 0.019 3371 0.004 0.008 0.055 0.023 0.018 3644 0.007 0.212 0.370
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital A_Prenatal_Burden_Score_z -0.005 0.019 3371 0.011 0.808 0.961 0.014 0.018 3644 0.013 0.432 0.605
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.031 0.018 3371 0.025 0.090 0.291 0.012 0.018 3644 0.032 0.524 0.652
smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.041 0.019 3371 0.018 0.030 0.119 0.050 0.018 3644 0.024 0.006 0.032
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.054 0.019 3371 0.042 0.004 0.051 -0.045 0.018 3644 0.025 0.014 0.055
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal A_Prenatal_Burden_Score_z -0.007 0.019 3371 0.013 0.696 0.910 0.036 0.018 3644 0.023 0.047 0.139
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal A_Prenatal_Burden_Score_z -0.024 0.018 3371 0.068 0.191 0.449 -0.008 0.018 3644 0.068 0.656 0.743
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral A_Prenatal_Burden_Score_z 0.017 0.019 3371 0.011 0.376 0.639 -0.013 0.018 3644 0.005 0.480 0.636
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis A_Prenatal_Burden_Score_z -0.020 0.019 3371 0.009 0.287 0.528 -0.033 0.018 3644 0.005 0.068 0.166
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis A_Prenatal_Burden_Score_z 0.025 0.019 3371 0.016 0.183 0.445 0.026 0.018 3644 0.013 0.161 0.322
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis A_Prenatal_Burden_Score_z 0.001 0.018 3371 0.011 0.943 0.961 0.016 0.018 3644 0.017 0.366 0.529
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine A_Prenatal_Burden_Score_z -0.021 0.019 3371 0.027 0.257 0.513 0.021 0.018 3644 0.034 0.262 0.406
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral A_Prenatal_Burden_Score_z 0.001 0.019 3371 0.003 0.936 0.961 0.013 0.018 3644 0.012 0.453 0.616
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.014 0.018 3371 0.021 0.447 0.707 0.047 0.018 3644 0.029 0.010 0.042
smri_sulc_cdk_precnlh Sulcal depth lh-precentral A_Prenatal_Burden_Score_z 0.043 0.019 3371 0.016 0.020 0.093 0.032 0.018 3644 0.014 0.077 0.178
smri_sulc_cdk_pclh Sulcal depth lh-precuneus A_Prenatal_Burden_Score_z 0.002 0.019 3371 0.002 0.927 0.961 0.010 0.019 3644 0.007 0.588 0.701
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.051 0.019 3371 0.024 0.006 0.054 0.029 0.018 3644 0.017 0.111 0.229
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.028 0.018 3371 0.040 0.125 0.341 0.030 0.018 3644 0.037 0.100 0.220
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.003 0.019 3371 0.007 0.885 0.961 -0.058 0.018 3644 0.013 0.001 0.011
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal A_Prenatal_Burden_Score_z 0.000 0.019 3371 0.018 0.982 0.982 -0.034 0.018 3644 0.031 0.063 0.158
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.001 0.018 3371 0.035 0.947 0.961 -0.050 0.018 3644 0.038 0.005 0.030
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal A_Prenatal_Burden_Score_z 0.034 0.018 3371 0.000 0.064 0.229 0.006 0.018 3644 0.003 0.731 0.801
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.070 0.019 3371 0.010 0.000 0.013 -0.049 0.018 3644 0.012 0.007 0.035
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole A_Prenatal_Burden_Score_z -0.010 0.018 3371 0.034 0.605 0.840 -0.040 0.018 3644 0.033 0.023 0.078
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z -0.003 0.019 3371 0.014 0.893 0.961 0.060 0.018 3644 0.029 0.001 0.011
smri_sulc_cdk_insulalh Sulcal depth lh-insula A_Prenatal_Burden_Score_z 0.005 0.018 3371 0.036 0.773 0.954 0.001 0.018 3644 0.026 0.935 0.935
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.022 0.019 3371 0.011 0.247 0.509 -0.018 0.018 3644 0.003 0.322 0.487
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.022 0.019 3371 0.037 0.245 0.509 0.008 0.018 3644 0.030 0.643 0.741
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal A_Prenatal_Burden_Score_z 0.008 0.018 3371 0.008 0.663 0.884 0.041 0.018 3644 0.006 0.026 0.083
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus A_Prenatal_Burden_Score_z 0.031 0.019 3371 0.012 0.100 0.309 0.024 0.018 3644 0.010 0.197 0.361
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal A_Prenatal_Burden_Score_z -0.054 0.019 3371 0.005 0.005 0.052 -0.030 0.019 3644 0.005 0.104 0.222
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.063 0.019 3371 0.026 0.001 0.017 0.059 0.018 3644 0.043 0.001 0.011
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal A_Prenatal_Burden_Score_z 0.009 0.019 3371 0.034 0.639 0.869 0.017 0.018 3644 0.038 0.358 0.529
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.051 0.019 3371 0.005 0.006 0.054 -0.066 0.018 3644 0.006 0.000 0.005
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate A_Prenatal_Burden_Score_z 0.007 0.019 3371 0.002 0.716 0.919 0.010 0.019 3644 -0.003 0.602 0.706
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital A_Prenatal_Burden_Score_z 0.003 0.019 3371 0.003 0.864 0.961 0.022 0.019 3644 0.001 0.235 0.371
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.002 0.018 3371 0.040 0.925 0.961 0.010 0.018 3644 0.041 0.575 0.698
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual A_Prenatal_Burden_Score_z 0.003 0.019 3371 0.018 0.892 0.961 0.022 0.019 3644 0.017 0.228 0.370
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.010 0.019 3371 0.043 0.598 0.840 -0.034 0.018 3644 0.035 0.062 0.158
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.020 0.018 3371 0.037 0.275 0.520 0.047 0.018 3644 0.031 0.010 0.042
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal A_Prenatal_Burden_Score_z -0.012 0.018 3371 0.050 0.519 0.785 -0.004 0.018 3644 0.045 0.825 0.863
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral A_Prenatal_Burden_Score_z 0.023 0.019 3371 0.012 0.224 0.508 0.032 0.018 3644 0.012 0.079 0.178
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis A_Prenatal_Burden_Score_z -0.015 0.019 3371 0.000 0.415 0.689 -0.022 0.018 3644 0.003 0.223 0.370
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis A_Prenatal_Burden_Score_z 0.029 0.019 3371 0.007 0.123 0.341 0.022 0.018 3644 0.018 0.223 0.370
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis A_Prenatal_Burden_Score_z -0.005 0.019 3371 0.012 0.786 0.954 -0.014 0.018 3644 0.013 0.436 0.605
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine A_Prenatal_Burden_Score_z 0.003 0.019 3371 0.017 0.872 0.961 -0.012 0.018 3644 0.020 0.528 0.652
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral A_Prenatal_Burden_Score_z -0.006 0.019 3371 0.007 0.738 0.929 0.035 0.018 3644 0.003 0.056 0.158
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate A_Prenatal_Burden_Score_z 0.050 0.019 3371 0.022 0.008 0.055 0.041 0.018 3644 0.024 0.022 0.078
smri_sulc_cdk_precnrh Sulcal depth rh-precentral A_Prenatal_Burden_Score_z 0.042 0.019 3371 0.006 0.024 0.103 0.035 0.018 3644 0.012 0.060 0.158
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus A_Prenatal_Burden_Score_z 0.026 0.019 3371 0.007 0.169 0.426 -0.002 0.019 3644 0.011 0.931 0.935
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.047 0.019 3371 0.016 0.012 0.070 0.054 0.018 3644 0.004 0.003 0.026
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal A_Prenatal_Burden_Score_z 0.012 0.018 3371 0.029 0.517 0.785 -0.004 0.018 3644 0.042 0.808 0.863
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.026 0.019 3371 0.011 0.156 0.407 -0.082 0.018 3644 0.014 0.000 0.000
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal A_Prenatal_Burden_Score_z -0.020 0.019 3371 0.048 0.271 0.520 -0.037 0.018 3644 0.042 0.043 0.134
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.062 0.018 3371 0.049 0.001 0.017 -0.050 0.018 3644 0.034 0.005 0.030
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal A_Prenatal_Burden_Score_z 0.036 0.019 3371 0.004 0.056 0.210 0.013 0.018 3644 0.005 0.486 0.636
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.048 0.019 3371 0.009 0.010 0.064 -0.051 0.018 3644 0.019 0.005 0.030
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.022 0.018 3371 0.010 0.234 0.509 -0.064 0.017 3644 0.021 0.000 0.003
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal A_Prenatal_Burden_Score_z 0.011 0.018 3371 0.026 0.563 0.830 0.041 0.018 3644 0.034 0.021 0.078
smri_sulc_cdk_insularh Sulcal depth rh-insula A_Prenatal_Burden_Score_z 0.017 0.018 3371 0.038 0.348 0.623 -0.002 0.018 3644 0.026 0.903 0.931

eTable3 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Females by Site

Prepare results for eTable3

Main_results_bySite.F                               <- rbind(CortVol_SigResults_bySite.F,
                                                             CortThickResults_bySite.F,
                                                             CortAreaResults_bySite.F,
                                                             SulcalDepthResults_bySite.F)
#Saving eTable3
write.xlsx(x = Main_results_bySite.F[complete.cases(Main_results_bySite.F),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
           file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
           sheetName = 'eTable3',
           row.names = F,
           showNA = F, 
           append = T
           )

Create eTable3

kable(Main_results_bySite.F[complete.cases(Main_results_bySite.F),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
      caption = 'eTable3 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Females by Site',
      digits = 3) %>% 
  kable_styling(position = "center")
eTable3 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Females by Site
Site Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor
1 site11 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.018 0.086 149 0.116 0.838
2 site14 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.022 0.096 171 0.112 0.819
3 site02 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.023 0.077 176 0.157 0.765
4 site05 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.119 0.105 111 0.278 0.261
6 site16 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.018 0.067 310 0.148 0.788
8 site04 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.025 0.095 140 0.065 0.795
9 site09 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.022 0.127 129 0.181 0.863
10 site19 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.101 0.080 171 0.274 0.213
11 site03 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.113 0.084 136 0.189 0.183
12 site08 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.041 0.142 80 0.194 0.772
13 site07 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.134 0.131 89 0.219 0.312
15 site01 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.221 0.118 100 0.220 0.064
16 site15 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.062 0.079 120 0.239 0.440
18 site06 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.058 0.082 201 0.063 0.483
19 site18 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.328 0.148 96 0.034 0.030
20 site21 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.014 0.109 134 -0.012 0.899
21 site13 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.080 0.089 144 0.271 0.374
22 site20 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.052 0.122 78 0.394 0.673
23 site20 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.179 0.109 143 0.027 0.105
24 site10 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.068 0.081 160 0.188 0.400
25 site17 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.028 0.083 195 0.167 0.739
27 site12 smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.003 0.089 143 0.143 0.971
30 site11 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z 0.002 0.075 149 0.323 0.981
31 site14 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.146 0.083 171 0.365 0.079
32 site02 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.038 0.070 176 0.320 0.588
33 site05 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.019 0.092 111 0.448 0.837
35 site16 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.066 0.064 310 0.248 0.302
37 site04 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z 0.046 0.094 140 0.085 0.625
38 site09 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z 0.113 0.116 129 0.315 0.334
39 site19 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.012 0.079 171 0.315 0.883
40 site03 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.065 0.065 136 0.428 0.320
41 site08 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.071 0.136 80 0.251 0.605
42 site07 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.031 0.102 89 0.398 0.760
44 site01 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.075 0.120 100 0.225 0.536
45 site15 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.109 0.082 120 0.199 0.188
47 site06 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.063 0.072 201 0.295 0.382
48 site18 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.107 0.132 96 0.181 0.421
49 site21 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.073 0.090 134 0.322 0.418
50 site13 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.144 0.084 144 0.346 0.090
51 site20 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.022 0.129 78 0.404 0.865
52 site20 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.131 0.099 143 0.259 0.189
53 site10 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z -0.055 0.078 160 0.297 0.481
54 site17 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z 0.010 0.078 195 0.267 0.899
56 site12 smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal A_Prenatal_Burden_Score_z 0.066 0.078 143 0.347 0.394
59 site11 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.092 0.073 149 0.368 0.209
60 site14 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.021 0.086 171 0.305 0.804
61 site02 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.177 0.078 176 0.232 0.024
62 site05 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.000 0.106 111 0.282 0.998
64 site16 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.015 0.060 310 0.336 0.804
66 site04 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.120 0.088 140 0.193 0.176
67 site09 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.078 0.117 129 0.309 0.504
68 site19 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.017 0.085 171 0.233 0.842
69 site03 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.058 0.070 136 0.414 0.407
70 site08 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.212 0.143 80 0.175 0.145
71 site07 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.009 0.111 89 0.325 0.936
73 site01 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.031 0.114 100 0.300 0.788
74 site15 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.014 0.073 120 0.383 0.847
76 site06 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.091 0.067 201 0.390 0.176
77 site18 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.316 0.138 96 0.168 0.025
78 site21 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.109 0.095 134 0.254 0.256
79 site13 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.114 0.094 144 0.194 0.227
80 site20 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.138 0.152 78 0.103 0.368
81 site20 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.141 0.088 143 0.374 0.113
82 site10 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.010 0.080 160 0.242 0.905
83 site17 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.110 0.071 195 0.387 0.126
85 site12 smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.106 0.083 143 0.256 0.201
88 site11 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.086 0.066 149 0.456 0.194
89 site14 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.027 0.072 171 0.521 0.708
90 site02 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.076 0.076 176 0.282 0.321
91 site05 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.186 0.101 111 0.330 0.071
93 site16 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.068 0.055 310 0.420 0.213
95 site04 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.022 0.080 140 0.337 0.788
96 site09 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.036 0.111 129 0.370 0.746
97 site19 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.012 0.075 171 0.427 0.869
98 site03 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.071 0.062 136 0.506 0.255
99 site08 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.192 0.139 80 0.206 0.173
100 site07 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.013 0.094 89 0.602 0.887
102 site01 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.205 0.106 100 0.435 0.056
103 site15 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.031 0.076 120 0.349 0.684
105 site06 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.035 0.066 201 0.415 0.594
106 site18 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.195 0.130 96 0.251 0.137
107 site21 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.102 0.080 134 0.401 0.202
108 site13 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.116 0.069 144 0.331 0.097
109 site20 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.064 0.127 78 0.424 0.615
110 site20 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.075 0.077 143 0.537 0.333
111 site10 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z 0.064 0.070 160 0.415 0.360
112 site17 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.062 0.070 195 0.403 0.374
114 site12 smri_vol_cdk_insulalh Cortical volume lh-insula A_Prenatal_Burden_Score_z -0.085 0.073 143 0.425 0.244
117 site11 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.070 0.075 149 0.312 0.357
118 site14 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.045 0.085 171 0.326 0.597
119 site02 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.164 0.076 176 0.242 0.032
120 site05 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.124 0.111 111 0.230 0.268
122 site16 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.030 0.065 310 0.234 0.643
124 site04 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.225 0.081 140 0.324 0.007
125 site09 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.209 0.121 129 0.257 0.086
126 site19 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.135 0.079 171 0.390 0.088
127 site03 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.036 0.075 136 0.333 0.633
128 site08 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.012 0.118 80 0.383 0.920
129 site07 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.061 0.127 89 0.238 0.634
131 site01 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.058 0.105 100 0.358 0.581
132 site15 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.028 0.078 120 0.124 0.721
134 site06 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.024 0.071 201 0.312 0.733
135 site18 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.013 0.120 96 0.388 0.911
136 site21 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.108 0.096 134 0.207 0.261
137 site13 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.066 0.091 144 0.213 0.471
138 site20 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.042 0.143 78 0.208 0.769
139 site20 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.012 0.093 143 0.365 0.900
140 site10 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.057 0.078 160 0.299 0.462
141 site17 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.077 0.069 195 0.423 0.267
143 site12 smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.114 0.082 143 0.268 0.167
146 site11 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.025 0.062 149 0.535 0.684
147 site14 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.132 0.083 171 0.358 0.116
148 site02 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.067 0.074 176 0.325 0.365
149 site05 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.163 0.088 111 0.489 0.067
151 site16 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.033 0.058 310 0.392 0.565
153 site04 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.053 0.083 140 0.292 0.521
154 site09 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.009 0.101 129 0.466 0.929
155 site19 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.119 0.068 171 0.517 0.081
156 site03 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.023 0.069 136 0.434 0.737
157 site08 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.034 0.144 80 0.165 0.814
158 site07 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.040 0.083 89 0.657 0.628
160 site01 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.103 0.089 100 0.604 0.253
161 site15 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.032 0.063 120 0.540 0.610
163 site06 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.060 0.062 201 0.472 0.338
164 site18 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.074 0.125 96 0.317 0.555
165 site21 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.039 0.085 134 0.345 0.645
166 site13 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.128 0.076 144 0.470 0.094
167 site20 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.284 0.133 78 0.320 0.038
168 site20 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.091 0.077 143 0.560 0.239
169 site10 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.030 0.075 160 0.346 0.687
170 site17 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.057 0.071 195 0.369 0.421
172 site12 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.117 0.065 143 0.538 0.073
14 site11 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.138 0.078 149 0.232 0.079
26 site14 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.126 0.089 171 0.162 0.161
34 site02 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.079 0.071 176 0.257 0.268
43 site05 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.093 0.109 111 0.256 0.395
63 site16 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.081 0.062 310 0.292 0.191
84 site04 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.154 0.089 140 0.206 0.085
92 site09 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.117 0.117 129 0.306 0.320
101 site19 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.156 0.078 171 0.304 0.048
113 site03 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.091 0.079 136 0.256 0.254
121 site08 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.075 0.135 80 0.180 0.584
133 site07 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.330 0.114 89 0.170 0.005
152 site01 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.189 0.116 100 0.317 0.109
162 site15 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.024 0.072 120 0.401 0.746
181 site06 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.233 0.070 201 0.312 0.001
191 site18 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.163 0.131 96 0.231 0.218
202 site21 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.063 0.100 134 0.116 0.528
211 site13 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.025 0.089 144 0.273 0.781
221 site20 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.040 0.159 78 0.099 0.801
231 site20 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z -0.162 0.097 143 0.261 0.096
241 site10 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.149 0.072 160 0.394 0.041
251 site17 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.046 0.077 195 0.299 0.555
271 site12 smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus A_Prenatal_Burden_Score_z 0.017 0.080 143 0.292 0.834
301 site11 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.069 0.071 149 0.373 0.333
311 site14 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.024 0.083 171 0.356 0.769
321 site02 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.062 0.064 176 0.444 0.337
331 site05 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.058 0.079 111 0.415 0.464
351 site16 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.114 0.052 310 0.502 0.030
371 site04 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.019 0.073 140 0.458 0.794
381 site09 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.013 0.107 129 0.428 0.903
391 site19 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.088 0.068 171 0.496 0.202
401 site03 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.079 0.080 136 0.275 0.325
411 site08 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.167 0.147 80 0.139 0.262
421 site07 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.119 0.114 89 0.399 0.303
441 site01 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.221 0.118 100 0.305 0.066
451 site15 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.081 0.069 120 0.440 0.243
471 site06 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.026 0.065 201 0.423 0.693
481 site18 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.217 0.122 96 0.345 0.080
491 site21 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.024 0.086 134 0.334 0.780
501 site13 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.216 0.084 144 0.311 0.012
511 site20 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.282 0.132 78 0.392 0.037
521 site20 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.080 0.078 143 0.550 0.310
531 site10 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.117 0.078 160 0.297 0.136
541 site17 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.084 0.072 195 0.321 0.245
561 site12 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.142 0.077 143 0.353 0.068
591 site11 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.077 0.083 149 0.160 0.359
601 site14 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.154 0.085 171 0.308 0.072
611 site02 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.065 0.080 176 0.196 0.412
621 site05 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.035 0.116 111 0.087 0.764
641 site16 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.041 0.064 310 0.247 0.523
661 site04 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.118 0.083 140 0.278 0.158
671 site09 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.256 0.120 129 0.269 0.035
681 site19 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.063 0.078 171 0.281 0.418
691 site03 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.117 0.092 136 0.090 0.208
701 site08 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.093 0.145 80 0.165 0.524
711 site07 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.269 0.108 89 0.283 0.015
731 site01 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.086 0.137 100 0.021 0.533
741 site15 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.077 0.086 120 0.148 0.371
761 site06 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.026 0.077 201 0.193 0.734
771 site18 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.205 0.135 96 0.141 0.134
781 site21 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.156 0.101 134 0.087 0.125
791 site13 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.199 0.096 144 0.151 0.041
801 site20 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.245 0.141 78 0.183 0.089
811 site20 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.206 0.098 143 0.301 0.039
821 site10 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.065 0.086 160 0.188 0.449
831 site17 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.106 0.083 195 0.141 0.204
851 site12 smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.045 0.084 143 0.230 0.593
881 site11 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.145 0.072 149 0.350 0.046
891 site14 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.092 0.072 171 0.499 0.205
901 site02 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.054 0.071 176 0.384 0.452
911 site05 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.171 0.099 111 0.382 0.090
931 site16 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.028 0.058 310 0.362 0.625
951 site04 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.154 0.077 140 0.376 0.048
961 site09 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.168 0.102 129 0.465 0.101
971 site19 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z 0.004 0.059 171 0.587 0.941
981 site03 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.007 0.067 136 0.480 0.922
991 site08 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z 0.122 0.132 80 0.308 0.357
1001 site07 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.328 0.094 89 0.599 0.001
1021 site01 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.112 0.099 100 0.491 0.260
1031 site15 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.032 0.068 120 0.477 0.637
1051 site06 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.060 0.063 201 0.435 0.344
1061 site18 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z 0.044 0.114 96 0.385 0.701
1071 site21 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.071 0.076 134 0.479 0.349
1081 site13 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.030 0.080 144 0.386 0.712
1091 site20 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.046 0.153 78 0.144 0.767
1101 site20 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.195 0.080 143 0.489 0.016
1111 site10 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.066 0.071 160 0.447 0.350
1121 site17 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z 0.107 0.069 195 0.420 0.125
1141 site12 smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal A_Prenatal_Burden_Score_z -0.086 0.071 143 0.437 0.230
1171 site11 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.082 0.085 149 0.122 0.336
1181 site14 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.021 0.097 171 0.136 0.828
1191 site02 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.114 0.078 176 0.105 0.145
1201 site05 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z -0.105 0.126 111 0.034 0.406
1221 site16 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.111 0.069 310 0.112 0.108
1241 site04 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.079 0.085 140 0.265 0.357
1251 site09 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.179 0.140 129 0.007 0.204
1261 site19 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.053 0.086 171 0.197 0.540
1271 site03 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.005 0.083 136 0.243 0.954
1281 site08 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z -0.236 0.146 80 0.149 0.112
1291 site07 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z -0.093 0.083 89 -0.105 0.264
1311 site01 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.106 0.118 100 0.189 0.375
1321 site15 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.047 0.088 120 0.098 0.594
1341 site06 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.077 0.076 201 0.213 0.311
1351 site18 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.205 0.138 96 0.157 0.142
1361 site21 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.049 0.096 134 0.153 0.611
1371 site13 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z -0.029 0.098 144 0.112 0.771
1381 site20 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.040 0.148 78 0.111 0.789
1391 site20 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.113 0.105 143 0.160 0.285
1401 site10 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.004 0.086 160 0.116 0.966
1411 site17 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.062 0.085 195 0.097 0.467
1431 site12 smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole A_Prenatal_Burden_Score_z 0.187 0.089 143 0.141 0.038
1461 site11 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.024 0.082 149 0.169 0.772
1471 site14 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.147 0.084 171 0.312 0.083
1481 site02 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.114 0.079 176 0.185 0.149
1491 site05 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.235 0.113 111 0.151 0.041
1511 site16 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.063 0.065 310 0.232 0.337
1531 site04 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.056 0.087 140 0.214 0.520
1541 site09 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.008 0.120 129 0.270 0.946
1551 site19 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.065 0.076 171 0.363 0.395
1561 site03 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.006 0.086 136 0.182 0.943
1571 site08 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.152 0.140 80 0.221 0.284
1581 site07 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.242 0.141 89 0.106 0.092
1601 site01 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.205 0.125 100 0.227 0.106
1611 site15 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.011 0.079 120 0.221 0.894
1631 site06 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.065 0.076 201 0.209 0.398
1641 site18 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.079 0.133 96 0.246 0.551
1651 site21 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.108 0.093 134 0.081 0.250
1661 site13 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.044 0.082 144 0.333 0.599
1671 site20 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.169 0.141 78 0.198 0.236
1681 site20 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.130 0.096 143 0.280 0.178
1691 site10 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.009 0.080 160 0.257 0.915
1701 site17 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.073 0.081 195 0.175 0.373
1721 site12 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.049 0.085 143 0.226 0.567
175 site11 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.100 0.057 149 0.580 0.083
176 site14 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.116 0.075 171 0.449 0.123
177 site02 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.043 0.057 176 0.530 0.454
178 site05 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.016 0.081 111 0.603 0.842
180 site16 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.066 0.054 310 0.482 0.224
182 site04 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.092 0.075 140 0.414 0.223
183 site09 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.241 0.096 129 0.527 0.014
184 site19 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.071 0.063 171 0.585 0.263
185 site03 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.039 0.069 136 0.456 0.569
186 site08 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.157 0.124 80 0.383 0.211
187 site07 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.009 0.057 89 0.472 0.873
189 site01 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.112 0.098 100 0.509 0.257
190 site15 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.052 0.063 120 0.553 0.408
192 site06 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.089 0.054 201 0.593 0.099
193 site18 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.059 0.135 96 0.220 0.665
194 site21 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.029 0.079 134 0.443 0.717
195 site13 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.014 0.081 144 0.404 0.860
196 site20 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.276 0.146 78 0.195 0.063
197 site20 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.068 0.077 143 0.529 0.381
198 site10 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.078 0.072 160 0.388 0.281
199 site17 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.031 0.066 195 0.474 0.638
201 site12 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.223 0.066 143 0.526 0.001
17 site11 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.032 0.064 149 0.508 0.624
28 site14 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.104 0.081 171 0.413 0.199
36 site02 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.070 0.072 176 0.320 0.335
46 site05 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.125 0.097 111 0.400 0.203
65 site16 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.010 0.055 310 0.417 0.861
86 site04 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.039 0.076 140 0.401 0.613
94 site09 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.022 0.104 129 0.455 0.831
104 site19 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.088 0.071 171 0.473 0.217
115 site03 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.067 0.068 136 0.455 0.327
123 site08 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.005 0.126 80 0.366 0.966
1310 site07 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.100 0.082 89 0.436 0.229
159 site01 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.074 0.107 100 0.272 0.489
1610 site15 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.037 0.065 120 0.499 0.571
188 site06 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.139 0.066 201 0.409 0.036
1910 site18 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.127 0.132 96 0.219 0.338
203 site21 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.059 0.087 134 0.352 0.497
212 site13 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.015 0.071 144 0.538 0.837
222 site20 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.067 0.107 78 0.601 0.534
232 site20 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.150 0.086 143 0.468 0.085
242 site10 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.130 0.067 160 0.475 0.056
252 site17 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z 0.105 0.072 195 0.386 0.147
272 site12 smri_area_cdk_locclh Cortical area lh-lateraloccipital A_Prenatal_Burden_Score_z -0.040 0.079 143 0.334 0.610
302 site11 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.017 0.064 149 0.513 0.792
312 site14 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z 0.034 0.074 171 0.498 0.646
322 site02 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.015 0.067 176 0.425 0.825
332 site05 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.200 0.101 111 0.264 0.050
352 site16 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.112 0.054 310 0.449 0.037
372 site04 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z 0.052 0.081 140 0.325 0.526
382 site09 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.072 0.098 129 0.507 0.469
392 site19 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.067 0.077 171 0.389 0.386
402 site03 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.061 0.057 136 0.575 0.289
412 site08 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.154 0.117 80 0.447 0.195
422 site07 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z 0.015 0.072 89 0.530 0.832
442 site01 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.090 0.110 100 0.393 0.413
452 site15 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.019 0.067 120 0.472 0.775
472 site06 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.010 0.063 201 0.459 0.878
482 site18 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.130 0.132 96 0.236 0.328
492 site21 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.128 0.079 134 0.420 0.107
502 site13 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.040 0.064 144 0.337 0.533
512 site20 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.003 0.113 78 0.541 0.981
522 site20 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.120 0.076 143 0.550 0.117
532 site10 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.069 0.066 160 0.466 0.303
542 site17 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.022 0.072 195 0.373 0.766
562 site12 smri_area_cdk_insulalh Cortical area lh-insula A_Prenatal_Burden_Score_z -0.087 0.069 143 0.483 0.213
592 site11 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.053 0.076 149 0.307 0.489
602 site14 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.077 0.093 171 0.211 0.410
612 site02 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.146 0.070 176 0.315 0.040
622 site05 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.113 0.092 111 0.322 0.225
642 site16 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.081 0.065 310 0.223 0.218
662 site04 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.083 0.081 140 0.348 0.306
672 site09 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.089 0.126 129 0.202 0.479
682 site19 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.068 0.082 171 0.310 0.410
692 site03 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.117 0.067 136 0.454 0.084
702 site08 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.236 0.122 80 0.346 0.058
712 site07 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.136 0.109 89 0.429 0.216
732 site01 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.170 0.101 100 0.330 0.096
742 site15 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.037 0.075 120 0.362 0.620
762 site06 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.067 0.067 201 0.382 0.315
772 site18 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.173 0.136 96 0.174 0.208
782 site21 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.037 0.090 134 0.317 0.683
792 site13 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.135 0.085 144 0.355 0.115
802 site20 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.196 0.129 78 0.367 0.136
812 site20 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.002 0.098 143 0.268 0.980
822 site10 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z -0.033 0.071 160 0.401 0.642
832 site17 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.064 0.077 195 0.258 0.411
852 site12 smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis A_Prenatal_Burden_Score_z 0.081 0.079 143 0.337 0.309
116 site11 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.061 0.089 149 0.047 0.491
29 site14 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.234 0.094 171 0.076 0.014
310 site02 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.020 0.082 176 0.040 0.804
410 site05 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.011 0.125 111 0.011 0.932
610 site16 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.102 0.074 310 0.007 0.168
87 site04 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.034 0.092 140 0.126 0.713
910 site09 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.148 0.134 129 0.082 0.273
1010 site19 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.212 0.091 171 0.095 0.021
1110 site03 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.078 0.087 136 0.074 0.369
1210 site08 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.079 0.171 80 -0.081 0.645
1312 site07 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.180 0.126 89 0.267 0.158
1510 site01 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.159 0.120 100 0.167 0.188
1612 site15 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.104 0.093 120 0.011 0.267
1810 site06 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.105 0.082 201 0.092 0.204
1911 site18 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.043 0.153 96 -0.033 0.778
204 site21 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.087 0.111 134 -0.044 0.435
213 site13 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.077 0.105 144 -0.032 0.467
223 site20 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.003 0.177 78 -0.106 0.986
233 site20 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.167 0.108 143 0.108 0.123
243 site10 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.022 0.089 160 0.047 0.804
253 site17 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.013 0.091 195 0.042 0.884
273 site12 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.023 0.099 143 -0.047 0.814
303 site11 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.090 0.083 149 0.149 0.281
313 site14 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.072 0.095 171 0.062 0.447
323 site02 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.042 0.084 176 -0.024 0.621
333 site05 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.075 0.126 111 0.020 0.551
353 site16 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.244 0.072 310 0.053 0.001
373 site04 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.041 0.098 140 0.014 0.677
383 site09 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.335 0.137 129 0.048 0.016
393 site19 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.126 0.098 171 -0.066 0.198
403 site03 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.005 0.090 136 0.043 0.958
413 site08 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.324 0.171 80 -0.076 0.063
423 site07 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.108 0.101 89 -0.109 0.289
443 site01 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.005 0.138 100 -0.012 0.968
453 site15 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.039 0.085 120 0.182 0.647
473 site06 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.209 0.083 201 0.052 0.013
483 site18 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.010 0.135 96 0.136 0.942
493 site21 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.122 0.108 134 -0.010 0.258
503 site13 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.086 0.104 144 0.004 0.411
513 site20 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.032 0.164 78 0.007 0.848
523 site20 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.090 0.120 143 -0.098 0.455
533 site10 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.085 0.098 160 -0.058 0.384
543 site17 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.015 0.092 195 -0.010 0.868
563 site12 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.021 0.098 143 -0.028 0.832
593 site11 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.015 0.093 149 -0.038 0.871
603 site14 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.288 0.102 171 0.009 0.005
613 site02 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.006 0.085 176 0.009 0.943
623 site05 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.282 0.124 111 0.040 0.026
643 site16 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.026 0.075 310 -0.009 0.730
663 site04 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.022 0.098 140 -0.028 0.825
673 site09 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.002 0.137 129 0.053 0.991
683 site19 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.067 0.083 171 0.108 0.423
693 site03 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.077 0.086 136 0.071 0.370
703 site08 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.056 0.161 80 0.048 0.726
713 site07 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.218 0.129 89 0.139 0.097
733 site01 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.155 0.137 100 0.022 0.262
743 site15 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.037 0.088 120 0.097 0.672
763 site06 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.206 0.081 201 0.118 0.012
773 site18 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.027 0.144 96 0.040 0.849
783 site21 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.084 0.111 134 -0.001 0.447
793 site13 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.075 0.095 144 0.173 0.428
803 site20 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.032 0.155 78 0.211 0.837
813 site20 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.208 0.109 143 0.110 0.058
823 site10 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.016 0.094 160 -0.025 0.864
833 site17 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.154 0.092 195 -0.024 0.096
853 site12 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.017 0.093 143 0.037 0.859
882 site11 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.117 0.085 149 0.124 0.173
892 site14 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.230 0.101 171 0.022 0.024
902 site02 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.112 0.075 176 0.169 0.138
912 site05 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.235 0.114 111 0.067 0.043
932 site16 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.067 0.071 310 0.075 0.346
952 site04 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.062 0.096 140 0.031 0.517
962 site09 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.100 0.122 129 0.229 0.412
972 site19 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.018 0.095 171 0.060 0.855
982 site03 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.045 0.094 136 -0.042 0.633
992 site08 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.233 0.168 80 -0.039 0.171
1002 site07 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.247 0.121 89 0.097 0.046
1022 site01 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.079 0.141 100 -0.028 0.580
1032 site15 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.153 0.090 120 0.081 0.094
1052 site06 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.198 0.084 201 0.040 0.020
1062 site18 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.157 0.148 96 -0.035 0.293
1072 site21 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.180 0.110 134 0.003 0.104
1082 site13 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.108 0.098 144 0.078 0.269
1092 site20 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.058 0.152 78 0.222 0.706
1102 site20 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.020 0.100 143 0.158 0.846
1112 site10 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.081 0.095 160 -0.001 0.392
1122 site17 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.127 0.090 195 0.020 0.157
1142 site12 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.194 0.092 143 0.072 0.037

eTable4 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Males by Site

Prepare results for eTable4

Main_results_bySite.M                           <- rbind(CortVol_SigResults_bySite.M,
                                                         SubCortVol_SigResults_bySite.M,
                                                         CortThickResults_bySite.M,
                                                         SulcalDepthResults_bySite.M)
#Saving eTable4
write.xlsx(x = Main_results_bySite.M[complete.cases(Main_results_bySite.M),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
           file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
           sheetName = 'eTable4',
           row.names = F,
           showNA = F, 
           append = T
           )

Create eTable4

kable(Main_results_bySite.M[complete.cases(Main_results_bySite.M),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
      caption = 'eTable4 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Males by Site',
      digits = 3) %>% 
  kable_styling(position = "center")
eTable4 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Males by Site
Site Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor
1 site11 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.087 0.069 134 0.498 0.211
2 site14 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.133 0.061 198 0.482 0.030
3 site02 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.019 0.069 227 0.349 0.778
4 site05 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.116 0.073 116 0.460 0.114
6 site16 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.060 0.054 387 0.319 0.270
8 site04 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.190 0.112 108 0.315 0.092
9 site09 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z 0.105 0.103 130 0.321 0.311
10 site19 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z 0.052 0.071 171 0.383 0.463
11 site03 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.102 0.088 164 0.386 0.246
12 site08 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.174 0.119 86 0.532 0.148
13 site07 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.215 0.103 110 0.371 0.039
15 site01 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z 0.028 0.121 111 0.361 0.816
16 site15 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.148 0.073 136 0.414 0.046
18 site06 smri_vol_cdk_precnlh Cortical volume lh-precentral A_Prenatal_Burden_Score_z -0.039 0.066 212 0.291 0.550
20 site11 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.009 0.067 134 0.510 0.896
21 site14 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.079 0.064 198 0.439 0.216
22 site02 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.071 0.065 227 0.403 0.278
23 site05 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.017 0.071 116 0.487 0.816
25 site16 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.104 0.051 387 0.377 0.042
27 site04 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.102 0.110 108 0.361 0.354
28 site09 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.000 0.095 130 0.419 0.999
29 site19 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.022 0.068 171 0.444 0.746
30 site03 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.067 0.084 164 0.463 0.423
31 site08 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.244 0.136 86 0.379 0.078
32 site07 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.191 0.089 110 0.539 0.033
34 site01 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.104 0.119 111 0.380 0.384
35 site15 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z 0.012 0.071 136 0.549 0.863
37 site06 smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal A_Prenatal_Burden_Score_z -0.068 0.061 212 0.393 0.265
39 site11 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z 0.008 0.083 134 0.272 0.920
40 site14 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.156 0.065 198 0.407 0.018
41 site02 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.068 0.069 227 0.346 0.325
42 site05 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.048 0.076 116 0.405 0.533
44 site16 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.088 0.054 387 0.311 0.106
46 site04 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.127 0.104 108 0.433 0.226
47 site09 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.131 0.110 130 0.221 0.234
48 site19 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.043 0.073 171 0.361 0.558
49 site03 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z 0.023 0.091 164 0.335 0.800
50 site08 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z 0.182 0.140 86 0.355 0.198
51 site07 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.049 0.099 110 0.403 0.626
53 site01 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z 0.102 0.139 111 0.175 0.465
54 site15 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.017 0.090 136 0.255 0.847
56 site06 smri_vol_cdk_postcnrh Cortical volume rh-postcentral A_Prenatal_Burden_Score_z -0.045 0.070 212 0.165 0.526
58 site11 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z -0.087 0.091 134 0.126 0.343
59 site14 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.100 0.082 198 0.068 0.225
60 site02 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.125 0.080 227 0.079 0.121
61 site05 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.046 0.090 116 0.168 0.612
63 site16 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.087 0.061 387 0.086 0.151
65 site04 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.047 0.135 108 0.019 0.729
66 site09 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.076 0.120 130 0.073 0.525
67 site19 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z -0.086 0.090 171 -0.002 0.342
68 site03 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.123 0.110 164 0.029 0.267
69 site08 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.288 0.164 86 0.101 0.083
70 site07 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.242 0.124 110 0.091 0.054
72 site01 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.020 0.143 111 0.115 0.891
73 site15 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z -0.029 0.098 136 0.082 0.771
75 site06 smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole A_Prenatal_Burden_Score_z 0.222 0.074 212 0.080 0.003
14 site11 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.069 0.066 134 0.514 0.303
24 site14 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.149 0.064 198 0.412 0.021
33 site02 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.160 0.066 227 0.404 0.015
43 site05 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.021 0.023 116 0.567 0.353
62 site16 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.116 0.054 387 0.326 0.033
81 site04 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.217 0.104 108 0.439 0.040
93 site09 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.015 0.107 130 0.272 0.885
102 site19 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.214 0.065 171 0.492 0.001
112 site03 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.040 0.090 164 0.360 0.658
121 site08 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.208 0.159 86 0.139 0.196
131 site07 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.013 0.091 110 0.494 0.886
152 site01 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.151 0.125 111 0.326 0.231
166 site15 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z -0.143 0.076 136 0.490 0.061
185 site06 smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal A_Prenatal_Burden_Score_z 0.049 0.052 212 0.552 0.346
204 site11 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z -0.153 0.090 134 0.099 0.091
214 site14 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.226 0.078 198 0.170 0.004
223 site02 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.067 0.081 227 0.102 0.408
233 site05 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.022 0.099 116 -0.012 0.824
252 site16 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.070 0.063 387 0.077 0.268
271 site04 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.108 0.129 108 0.160 0.402
283 site09 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.007 0.120 130 0.089 0.955
292 site19 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.048 0.080 171 0.084 0.544
302 site03 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.255 0.102 164 0.167 0.014
311 site08 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z -0.078 0.149 86 0.239 0.600
321 site07 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.114 0.124 110 0.080 0.362
341 site01 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z -0.065 0.153 111 -0.050 0.670
351 site15 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.065 0.094 136 0.149 0.493
371 site06 smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate A_Prenatal_Burden_Score_z 0.005 0.073 212 0.100 0.949
391 site11 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.026 0.086 134 0.207 0.762
401 site14 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.241 0.066 198 0.298 0.000
411 site02 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.065 0.064 227 0.437 0.311
421 site05 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.047 0.088 116 0.205 0.592
441 site16 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.059 0.058 387 0.211 0.313
461 site04 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.267 0.120 108 0.265 0.028
471 site09 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.010 0.111 130 0.213 0.932
481 site19 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.145 0.067 171 0.405 0.032
491 site03 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.077 0.078 164 0.488 0.326
501 site08 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.193 0.162 86 -0.052 0.238
511 site07 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.069 0.108 110 0.308 0.524
531 site01 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z -0.039 0.139 111 0.124 0.778
541 site15 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.068 0.091 136 0.253 0.455
561 site06 smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal A_Prenatal_Burden_Score_z 0.009 0.058 212 0.444 0.870
581 site11 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.078 0.059 134 0.628 0.185
591 site14 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.098 0.056 198 0.503 0.082
601 site02 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.146 0.056 227 0.557 0.010
611 site05 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.008 0.065 116 0.579 0.896
631 site16 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.075 0.048 387 0.473 0.118
651 site04 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.020 0.101 108 0.488 0.846
661 site09 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.096 0.083 130 0.556 0.249
671 site19 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.052 0.061 171 0.495 0.397
681 site03 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.206 0.075 164 0.559 0.006
691 site08 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.025 0.134 86 0.416 0.855
701 site07 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.049 0.091 110 0.438 0.589
721 site01 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.117 0.117 111 0.383 0.323
731 site15 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z -0.112 0.070 136 0.553 0.113
751 site06 smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal A_Prenatal_Burden_Score_z 0.065 0.051 212 0.560 0.205
77 site11 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.080 0.088 134 0.112 0.365
78 site14 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.096 0.080 198 0.093 0.234
79 site02 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.153 0.076 227 0.170 0.045
80 site05 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.094 0.091 116 0.143 0.306
82 site16 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.085 0.063 387 0.080 0.175
84 site04 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.241 0.138 108 0.053 0.086
85 site09 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.069 0.109 130 0.211 0.531
86 site19 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.124 0.080 171 0.155 0.122
87 site03 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.164 0.098 164 0.178 0.095
88 site08 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.056 0.181 86 -0.063 0.756
89 site07 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.105 0.129 110 -0.005 0.417
91 site01 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.103 0.154 111 -0.065 0.506
92 site15 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.002 0.099 136 0.136 0.982
94 site06 smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.034 0.068 212 0.226 0.615
96 site11 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z -0.072 0.087 134 0.214 0.405
97 site14 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.073 0.074 198 0.164 0.323
98 site02 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.188 0.078 227 0.076 0.017
99 site05 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z -0.009 0.090 116 0.200 0.925
101 site16 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.146 0.061 387 0.140 0.016
103 site04 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.205 0.125 108 0.189 0.106
104 site09 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.025 0.118 130 0.137 0.832
105 site19 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.116 0.075 171 0.207 0.126
106 site03 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z -0.085 0.099 164 0.207 0.394
107 site08 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z -0.043 0.168 86 0.073 0.798
108 site07 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.075 0.123 110 0.025 0.544
110 site01 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.109 0.143 111 0.080 0.446
111 site15 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.046 0.089 136 0.236 0.608
113 site06 smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole A_Prenatal_Burden_Score_z 0.112 0.069 212 0.199 0.105
17 site11 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.088 0.090 134 0.152 0.330
26 site14 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.115 0.081 198 -0.014 0.159
36 site02 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.183 0.085 227 0.015 0.033
45 site05 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.094 0.048 116 -0.001 0.054
64 site16 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.094 0.066 387 0.034 0.156
83 site04 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.177 0.132 108 -0.001 0.184
95 site09 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.101 0.121 130 0.004 0.403
109 site19 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.158 0.080 171 0.114 0.051
114 site03 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.189 0.110 164 0.018 0.088
128 site08 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.150 0.182 86 -0.102 0.411
133 site07 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.063 0.125 110 0.024 0.614
157 site01 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z -0.057 0.151 111 -0.008 0.706
169 site15 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.234 0.104 136 0.017 0.027
188 site06 smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform A_Prenatal_Burden_Score_z 0.105 0.077 212 0.025 0.179
207 site11 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z 0.081 0.089 134 0.126 0.365
216 site14 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.036 0.083 198 0.003 0.661
226 site02 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.030 0.083 227 0.004 0.719
235 site05 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.058 0.101 116 0.011 0.563
254 site16 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.083 0.067 387 0.012 0.214
273 site04 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.103 0.140 108 -0.058 0.463
285 site09 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z 0.062 0.124 130 0.035 0.615
299 site19 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.063 0.084 171 -0.012 0.456
304 site03 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z 0.116 0.109 164 -0.060 0.290
312 site08 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z 0.072 0.156 86 0.080 0.646
322 site07 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.186 0.117 110 0.124 0.115
342 site01 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.110 0.145 111 0.073 0.448
352 site15 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.169 0.107 136 -0.055 0.118
372 site06 smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal A_Prenatal_Burden_Score_z -0.193 0.079 212 -0.015 0.016
392 site11 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.056 0.103 134 -0.102 0.588
402 site14 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z -0.071 0.085 198 -0.001 0.405
412 site02 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.135 0.084 227 0.013 0.109
422 site05 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z -0.132 0.092 116 -0.022 0.155
442 site16 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.079 0.064 387 0.072 0.216
462 site04 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z -0.016 0.133 108 0.009 0.903
472 site09 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z -0.057 0.125 130 -0.006 0.651
482 site19 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.012 0.081 171 0.085 0.886
492 site03 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.070 0.107 164 0.004 0.513
502 site08 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.283 0.164 86 0.117 0.089
512 site07 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.449 0.120 110 0.120 0.000
532 site01 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z -0.033 0.149 111 -0.006 0.824
542 site15 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.119 0.102 136 0.060 0.244
562 site06 smri_sulc_cdk_linguallh Sulcal depth lh-lingual A_Prenatal_Burden_Score_z 0.114 0.078 212 0.002 0.148
582 site11 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.041 0.102 134 -0.077 0.688
592 site14 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.001 0.089 198 -0.054 0.993
602 site02 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.123 0.083 227 0.030 0.138
612 site05 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.114 0.097 116 0.091 0.244
632 site16 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z -0.021 0.067 387 0.007 0.754
652 site04 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z -0.135 0.118 108 0.277 0.255
662 site09 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.182 0.129 130 -0.073 0.160
672 site19 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.081 0.087 171 0.022 0.356
682 site03 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.107 0.113 164 0.001 0.346
692 site08 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.178 0.188 86 -0.367 0.348
702 site07 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.124 0.120 110 0.126 0.305
722 site01 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.000 0.156 111 -0.082 0.999
732 site15 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.065 0.101 136 0.068 0.519
752 site06 smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate A_Prenatal_Burden_Score_z 0.117 0.074 212 0.114 0.115
771 site11 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z 0.001 0.099 134 -0.081 0.990
781 site14 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.130 0.080 198 0.030 0.106
791 site02 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.088 0.081 227 0.014 0.277
801 site05 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.111 0.099 116 0.034 0.269
821 site16 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.057 0.065 387 0.040 0.379
841 site04 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.067 0.137 108 -0.010 0.627
851 site09 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.272 0.117 130 0.117 0.022
861 site19 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.183 0.089 171 -0.020 0.043
871 site03 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z 0.019 0.102 164 0.081 0.851
881 site08 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.083 0.185 86 -0.147 0.653
891 site07 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.286 0.125 110 0.038 0.025
911 site01 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.099 0.153 111 -0.019 0.517
921 site15 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.062 0.102 136 0.057 0.548
941 site06 smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal A_Prenatal_Burden_Score_z -0.167 0.074 212 0.031 0.025
961 site11 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.024 0.093 134 0.075 0.798
971 site14 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.144 0.080 198 0.041 0.071
981 site02 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.098 0.080 227 0.122 0.224
991 site05 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.374 0.089 116 0.254 0.000
1011 site16 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z 0.014 0.065 387 0.024 0.831
1031 site04 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.055 0.137 108 0.043 0.687
1041 site09 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.200 0.123 130 0.011 0.108
1051 site19 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.034 0.083 171 0.005 0.684
1061 site03 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.059 0.099 164 0.160 0.554
1071 site08 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z 0.086 0.164 86 0.092 0.603
1081 site07 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.108 0.121 110 0.100 0.372
1101 site01 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z 0.037 0.139 111 0.100 0.791
1111 site15 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.076 0.107 136 -0.048 0.482
1131 site06 smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal A_Prenatal_Burden_Score_z -0.018 0.080 212 -0.052 0.823
115 site11 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.061 0.100 134 -0.062 0.543
116 site14 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.029 0.085 198 -0.030 0.731
117 site02 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.000 0.084 227 -0.017 0.999
118 site05 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.061 0.103 116 -0.009 0.554
120 site16 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.112 0.067 387 0.000 0.097
122 site04 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.060 0.142 108 -0.052 0.672
123 site09 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.040 0.123 130 -0.009 0.748
124 site19 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.121 0.083 171 0.035 0.148
125 site03 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.274 0.106 164 -0.001 0.011
126 site08 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.094 0.185 86 -0.149 0.614
127 site07 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.042 0.130 110 -0.041 0.746
129 site01 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z 0.225 0.137 111 0.147 0.104
130 site15 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.072 0.107 136 -0.058 0.506
132 site06 smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole A_Prenatal_Burden_Score_z -0.162 0.077 212 0.018 0.037
134 site11 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z -0.086 0.103 134 -0.131 0.403
135 site14 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.051 0.081 198 0.036 0.534
136 site02 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.162 0.083 227 0.041 0.053
137 site05 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.322 0.096 116 0.128 0.001
139 site16 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.068 0.066 387 0.033 0.301
141 site04 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z -0.098 0.127 108 0.134 0.440
142 site09 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.215 0.123 130 0.001 0.084
143 site19 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.110 0.080 171 0.147 0.171
144 site03 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.072 0.106 164 0.077 0.497
145 site08 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.058 0.175 86 -0.043 0.744
146 site07 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z -0.044 0.130 110 -0.095 0.736
148 site01 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.250 0.152 111 -0.045 0.103
149 site15 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.210 0.089 136 0.110 0.020
151 site06 smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal A_Prenatal_Burden_Score_z 0.025 0.078 212 -0.007 0.754
153 site11 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.036 0.099 134 -0.031 0.720
154 site14 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.239 0.079 198 -0.011 0.003
155 site02 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.189 0.083 227 0.011 0.023
156 site05 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.041 0.095 116 0.090 0.670
158 site16 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.179 0.064 387 0.037 0.006
160 site04 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.116 0.128 108 0.114 0.370
161 site09 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.100 0.123 130 0.053 0.419
162 site19 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.044 0.083 171 0.076 0.597
163 site03 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.000 0.108 164 0.031 0.997
164 site08 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.067 0.179 86 -0.083 0.709
165 site07 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.205 0.119 110 0.142 0.089
167 site01 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.222 0.147 111 0.049 0.134
168 site15 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z 0.153 0.090 136 0.100 0.093
170 site06 smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform A_Prenatal_Burden_Score_z -0.009 0.076 212 0.043 0.910
172 site11 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.138 0.092 134 0.087 0.136
173 site14 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.059 0.081 198 0.048 0.465
174 site02 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.006 0.081 227 0.063 0.945
175 site05 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.148 0.099 116 0.062 0.139
177 site16 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z 0.031 0.067 387 0.019 0.642
179 site04 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.108 0.141 108 -0.079 0.445
180 site09 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.099 0.124 130 0.023 0.428
181 site19 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.031 0.089 171 -0.025 0.727
182 site03 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.017 0.113 164 -0.070 0.880
183 site08 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.102 0.169 86 0.034 0.550
184 site07 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.310 0.121 110 0.026 0.012
186 site01 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.016 0.156 111 -0.046 0.918
187 site15 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.198 0.107 136 -0.041 0.065
189 site06 smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal A_Prenatal_Burden_Score_z -0.049 0.079 212 -0.051 0.535
191 site11 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z -0.035 0.097 134 -0.003 0.719
192 site14 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.016 0.082 198 0.081 0.848
193 site02 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.094 0.082 227 0.052 0.249
194 site05 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.058 0.102 116 -0.022 0.574
196 site16 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.045 0.067 387 0.030 0.506
198 site04 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.037 0.142 108 -0.068 0.794
199 site09 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z -0.053 0.119 130 0.061 0.657
200 site19 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z -0.080 0.086 171 0.075 0.349
201 site03 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.160 0.101 164 0.090 0.117
202 site08 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z -0.117 0.168 86 0.057 0.490
203 site07 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z -0.024 0.129 110 -0.079 0.850
205 site01 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.107 0.154 111 -0.027 0.487
206 site15 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.132 0.105 136 -0.009 0.213
208 site06 smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal A_Prenatal_Burden_Score_z 0.046 0.076 212 0.038 0.545
210 site11 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.096 0.095 134 0.005 0.315
211 site14 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.022 0.087 198 -0.075 0.804
212 site02 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.088 0.081 227 0.029 0.277
213 site05 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.136 0.095 116 0.080 0.156
215 site16 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.035 0.066 387 -0.013 0.597
217 site04 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.190 0.120 108 0.133 0.117
218 site09 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.120 0.124 130 -0.010 0.335
219 site19 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.139 0.082 171 0.035 0.092
220 site03 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.447 0.098 164 0.177 0.000
221 site08 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.000 0.174 86 -0.005 0.998
222 site07 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.019 0.126 110 -0.023 0.880
224 site01 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z -0.131 0.142 111 0.088 0.357
225 site15 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.004 0.106 136 0.001 0.973
227 site06 smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate A_Prenatal_Burden_Score_z 0.046 0.080 212 -0.042 0.568
229 site11 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.043 0.094 134 0.048 0.645
230 site14 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.265 0.084 198 0.001 0.002
231 site02 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.119 0.084 227 0.032 0.157
232 site05 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.023 0.099 116 0.001 0.819
234 site16 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.015 0.066 387 0.025 0.821
236 site04 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z 0.109 0.138 108 0.016 0.434
237 site09 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.158 0.126 130 -0.003 0.213
238 site19 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.254 0.085 171 0.057 0.003
239 site03 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.141 0.109 164 -0.002 0.197
240 site08 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z 0.020 0.183 86 -0.124 0.914
241 site07 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.089 0.130 110 -0.031 0.493
243 site01 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.198 0.154 111 -0.036 0.201
244 site15 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.069 0.106 136 -0.010 0.514
246 site06 smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal A_Prenatal_Burden_Score_z -0.109 0.078 212 0.009 0.161
248 site11 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.120 0.095 134 0.042 0.211
249 site14 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.282 0.079 198 0.134 0.000
250 site02 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.002 0.084 227 0.032 0.982
251 site05 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.204 0.102 116 0.012 0.048
253 site16 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.054 0.066 387 -0.019 0.415
255 site04 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.276 0.139 108 -0.012 0.050
256 site09 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.002 0.130 130 -0.068 0.985
257 site19 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.028 0.082 171 0.109 0.736
258 site03 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.180 0.109 164 -0.022 0.103
259 site08 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.100 0.172 86 -0.005 0.563
260 site07 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.185 0.123 110 0.057 0.136
262 site01 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.009 0.147 111 0.036 0.951
263 site15 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z 0.095 0.105 136 -0.030 0.367
265 site06 smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal A_Prenatal_Burden_Score_z -0.078 0.076 212 0.054 0.312
267 site11 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z 0.117 0.094 134 0.041 0.215
268 site14 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.058 0.083 198 0.001 0.481
269 site02 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.176 0.082 227 0.046 0.033
270 site05 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.061 0.098 116 0.101 0.536
272 site16 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.022 0.065 387 0.025 0.739
274 site04 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.475 0.139 108 -0.009 0.001
275 site09 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.320 0.120 130 0.084 0.009
276 site19 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.100 0.086 171 0.061 0.247
277 site03 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.075 0.115 164 -0.040 0.518
278 site08 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z 0.003 0.164 86 0.099 0.986
279 site07 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.045 0.122 110 0.097 0.712
281 site01 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.013 0.143 111 0.077 0.925
282 site15 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z -0.098 0.096 136 -0.003 0.309
284 site06 smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole A_Prenatal_Burden_Score_z 0.005 0.080 212 -0.034 0.948
286 site11 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.075 0.099 134 -0.022 0.448
287 site14 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.200 0.078 198 0.015 0.012
288 site02 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.172 0.079 227 0.032 0.031
289 site05 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.106 0.094 116 0.147 0.263
291 site16 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.059 0.066 387 0.017 0.368
293 site04 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z 0.022 0.136 108 0.025 0.874
294 site09 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.192 0.120 130 -0.030 0.113
295 site19 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.249 0.085 171 0.084 0.004
296 site03 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.066 0.108 164 -0.019 0.539
297 site08 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.161 0.180 86 -0.115 0.374
298 site07 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.029 0.123 110 0.065 0.812
300 site01 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.125 0.141 111 0.137 0.376
301 site15 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.185 0.103 136 0.019 0.074
303 site06 smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole A_Prenatal_Burden_Score_z -0.213 0.078 212 0.008 0.007

Specificity analysis

eTable5 - Associations between Individual Prenatal Adverse Exposures and Brain Regions

Running analysis for each individual adverse exposures

#### Females ####
# Cortical Volume by exposure - Females 
CortVol_sensiResults.F <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CVol_outcomes,
    covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
    Scale = TRUE,
    data = abcd.f
  )

CortVol_sensiResults.F$ElementDescription <- 
  CortVolResults.F$ElementDescription[match(CortVol_sensiResults.F$Outcome, CortVolResults.F$Outcome)]

CortVol_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
  CortVol_sensiResults.F[which(CortVol_sensiResults.F$Predictor==i),]$FDR <-
  p.adjust(
    CortVol_sensiResults.F[CortVol_sensiResults.F$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Subcortical Volume by exposure - Females
SubCortVol_sensiResults.F <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  SubCortical_outcomes,
    covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
    Scale = TRUE,
    data = abcd.f
  )

SubCortVol_sensiResults.F$ElementDescription <- 
  SubCortVolResults.F$ElementDescription[match(SubCortVol_sensiResults.F$Outcome, SubCortVolResults.F$Outcome)]

SubCortVol_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
  SubCortVol_sensiResults.F[which(SubCortVol_sensiResults.F$Predictor==i),]$FDR <-
  p.adjust(
    SubCortVol_sensiResults.F[SubCortVol_sensiResults.F$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}
# Cortical Thickness by exposure - Females
CortThick_sensiResults.F <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CortThick_outcomes, 
    covars = c(covars.x, 'smri_thick_cdk_mean_z'),
    Scale = TRUE,
    data = abcd.f
  )

CortThick_sensiResults.F$ElementDescription <- 
  CortThickResults.F$ElementDescription[match(CortThick_sensiResults.F$Outcome, CortThickResults.F$Outcome)]

CortThick_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
  CortThick_sensiResults.F[which(CortThick_sensiResults.F$Predictor==i),]$FDR <-
  p.adjust(
    CortThick_sensiResults.F[CortThick_sensiResults.F$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Cortical Area by exposure - Females  
CortArea_sensiResults.F <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CortArea_outcomes,
    covars = c(covars.x, 'smri_area_cdk_total_z'),
    Scale = TRUE,
    data = abcd.f
  )

CortArea_sensiResults.F$ElementDescription <- 
  CortAreaResults.F$ElementDescription[match(CortArea_sensiResults.F$Outcome, CortAreaResults.F$Outcome)]

CortArea_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
  CortArea_sensiResults.F[which(CortArea_sensiResults.F$Predictor==i),]$FDR <-
  p.adjust(
    CortArea_sensiResults.F[CortArea_sensiResults.F$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Sulcal Depth by exposure - Females  
SulcalDepth_sensiResults.F <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  SulcalDepth_outcomes,
    covars = c(covars.x,'smri_sulc_cdk_mean_z'),
    Scale = TRUE,
    data = abcd.f
  )

SulcalDepth_sensiResults.F$ElementDescription <- 
  SulcalDepthResults.F$ElementDescription[match(SulcalDepth_sensiResults.F$Outcome, SulcalDepthResults.F$Outcome)]

SulcalDepth_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
  SulcalDepth_sensiResults.F[which(SulcalDepth_sensiResults.F$Predictor==i),]$FDR <-
  p.adjust(
    SulcalDepth_sensiResults.F[SulcalDepth_sensiResults.F$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}


#### Males ####
# Cortical Volume by exposure - Males
CortVol_sensiResults.M <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CVol_outcomes,
    covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
    Scale = TRUE,
    data = abcd.m
  )

CortVol_sensiResults.M$ElementDescription <- 
  CortVolResults.M$ElementDescription[match(CortVol_sensiResults.M$Outcome, CortVolResults.M$Outcome)]

CortVol_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
  CortVol_sensiResults.M[which(CortVol_sensiResults.M$Predictor==i),]$FDR <-
  p.adjust(
    CortVol_sensiResults.M[CortVol_sensiResults.M$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Subcortical Volume by exposure - Males
SubCortVol_sensiResults.M <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  SubCortical_outcomes,
    covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
    Scale = TRUE,
    data = abcd.m
  )

SubCortVol_sensiResults.M$ElementDescription <- 
  SubCortVolResults.M$ElementDescription[match(SubCortVol_sensiResults.M$Outcome, SubCortVolResults.M$Outcome)]

SubCortVol_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
  SubCortVol_sensiResults.M[which(SubCortVol_sensiResults.M$Predictor==i),]$FDR <-
  p.adjust(
    SubCortVol_sensiResults.M[SubCortVol_sensiResults.M$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Cortical Thickness by exposure - Males
CortThick_sensiResults.M <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CortThick_outcomes,
    covars = c(covars.x, 'smri_thick_cdk_mean_z'),
    Scale = TRUE,
    data = abcd.m
  )

CortThick_sensiResults.M$ElementDescription <- 
  CortThickResults.M$ElementDescription[match(CortThick_sensiResults.M$Outcome, CortThickResults.M$Outcome)]

CortThick_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
  CortThick_sensiResults.M[which(CortThick_sensiResults.M$Predictor==i),]$FDR <-
  p.adjust(
    CortThick_sensiResults.M[CortThick_sensiResults.M$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

# Cortical Area by exposure - Males  
CortArea_sensiResults.M <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  CortArea_outcomes,
    covars = c(covars.x,'smri_area_cdk_total_z'),
    Scale = TRUE,
    data = abcd.m
  )

CortArea_sensiResults.M$ElementDescription <- 
  CortAreaResults.M$ElementDescription[match(CortArea_sensiResults.M$Outcome, CortAreaResults.M$Outcome)]

CortArea_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
  CortArea_sensiResults.M[which(CortArea_sensiResults.M$Predictor==i),]$FDR <-
  p.adjust(
    CortArea_sensiResults.M[CortArea_sensiResults.M$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}


# Sulcal Depth by exposure - Males  
SulcalDepth_sensiResults.M <-
  LME_loop(
    predictors = Prenatal.vars,
    predictorsLab = Prenatal.labels,
    outcomes =  SulcalDepth_outcomes,
    covars = c(covars.x,'smri_sulc_cdk_mean_z'),
    Scale = TRUE,
    data = abcd.m
  )

SulcalDepth_sensiResults.M$ElementDescription <- 
  SulcalDepthResults.M$ElementDescription[match(SulcalDepth_sensiResults.M$Outcome, SulcalDepthResults.M$Outcome)]

SulcalDepth_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
  SulcalDepth_sensiResults.M[which(SulcalDepth_sensiResults.M$Predictor==i),]$FDR <-
  p.adjust(
    SulcalDepth_sensiResults.M[SulcalDepth_sensiResults.M$Predictor==i,]$p_value_Predictor,
    "fdr"
    )
}

Prepare results for eTable5

SensitivityResults.F <- rbind(CortVol_sensiResults.F,
      SubCortVol_sensiResults.F,
      CortThick_sensiResults.F,
      CortArea_sensiResults.F,
      SulcalDepth_sensiResults.F)

SensitivityResults.M <- rbind(CortVol_sensiResults.M,
      SubCortVol_sensiResults.M,
      CortThick_sensiResults.M,
      CortArea_sensiResults.M,
      SulcalDepth_sensiResults.M)

Saving eTable5

# Saving eTable5
write.xlsx(x = cbind(SensitivityResults.F[,-c(1,3)],  #Omit Id and label column
            SensitivityResults.M[,6:11]),             #Omit repeated columns,
           file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
           sheetName = 'eTable5',
           row.names = F,
           showNA = F, 
           append = T
           )

Create eTable5

kable(cbind(SensitivityResults.F[,-c(1,3)],  #Omit Id and label column
            SensitivityResults.M[,6:11]),    #Omit repeated columns
      digits = 3,
      caption = "eTable5 - Associations between Individual Prenatal Adverse Exposures and Brain Regions") %>% 
  add_header_above(c(" "=3, 'Females'=6, 'Males'=6)) %>% 
  kable_styling(position = "center")
eTable5 - Associations between Individual Prenatal Adverse Exposures and Brain Regions
Females
Males
Outcome ElementDescription Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Unplanned pregnancy 0.011 0.037 3371 0.135 0.762 0.959 0.012 0.037 3644 0.122 0.750 0.926
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus C-Section -0.112 0.035 3371 0.138 0.001 0.029 -0.085 0.033 3644 0.124 0.011 0.119
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Gestational Age -0.104 0.050 3371 0.137 0.038 0.131 -0.068 0.047 3644 0.124 0.147 0.303
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Birth weight -0.100 0.046 3371 0.138 0.030 0.135 -0.050 0.046 3644 0.123 0.277 0.542
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Tobacco use -0.107 0.053 3371 0.136 0.041 0.606 -0.049 0.051 3644 0.122 0.332 0.578
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Alcohol use -0.011 0.037 3371 0.134 0.768 0.885 -0.001 0.037 3644 0.121 0.983 0.988
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Marijuana use -0.124 0.072 3371 0.135 0.086 0.649 -0.066 0.073 3644 0.122 0.367 0.857
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Pregnancy complications 0.000 0.033 3371 0.135 0.999 0.999 -0.037 0.032 3644 0.122 0.248 0.767
smri_vol_cdk_banksstslh Cortical volume lh-Banks of Superior Temporal Sulcus Birth complications -0.079 0.036 3371 0.136 0.029 0.561 0.014 0.034 3644 0.121 0.681 0.927
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Unplanned pregnancy 0.031 0.038 3371 0.161 0.407 0.959 0.053 0.037 3644 0.152 0.146 0.905
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate C-Section 0.002 0.035 3371 0.161 0.950 0.994 0.030 0.033 3644 0.152 0.358 0.609
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Gestational Age -0.002 0.050 3371 0.161 0.970 0.985 -0.021 0.047 3644 0.152 0.656 0.810
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Birth weight 0.011 0.046 3371 0.161 0.819 0.884 -0.022 0.046 3644 0.152 0.623 0.766
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Tobacco use -0.069 0.053 3371 0.161 0.195 0.667 -0.006 0.051 3644 0.151 0.904 0.904
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Alcohol use 0.047 0.037 3371 0.162 0.205 0.633 0.001 0.037 3644 0.151 0.988 0.988
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Marijuana use 0.072 0.073 3371 0.161 0.322 0.911 -0.104 0.073 3644 0.152 0.152 0.647
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Pregnancy complications 0.067 0.033 3371 0.162 0.045 0.485 -0.007 0.032 3644 0.151 0.840 0.936
smri_vol_cdk_cdacatelh Cortical volume lh-caudalanteriorcingulate Birth complications -0.015 0.036 3371 0.161 0.681 0.913 -0.021 0.034 3644 0.152 0.532 0.847
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Unplanned pregnancy 0.002 0.035 3371 0.198 0.958 0.999 0.005 0.034 3644 0.202 0.893 0.959
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal C-Section 0.020 0.033 3371 0.198 0.535 0.754 0.020 0.031 3644 0.202 0.515 0.697
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Gestational Age -0.028 0.048 3371 0.198 0.560 0.709 -0.081 0.044 3644 0.204 0.065 0.183
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Birth weight 0.012 0.043 3371 0.198 0.773 0.860 0.022 0.043 3644 0.202 0.605 0.766
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Tobacco use 0.043 0.050 3371 0.198 0.391 0.812 -0.050 0.047 3644 0.202 0.282 0.533
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Alcohol use 0.020 0.035 3371 0.198 0.570 0.825 -0.039 0.034 3644 0.202 0.247 0.839
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Marijuana use 0.039 0.068 3371 0.198 0.563 0.934 -0.023 0.068 3644 0.202 0.730 0.958
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Pregnancy complications 0.004 0.031 3371 0.198 0.901 0.989 -0.018 0.030 3644 0.202 0.555 0.858
smri_vol_cdk_cdmdfrlh Cortical volume lh-caudalmiddlefrontal Birth complications -0.008 0.034 3371 0.198 0.823 0.913 -0.044 0.032 3644 0.203 0.167 0.516
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Unplanned pregnancy 0.010 0.037 3371 0.145 0.782 0.959 -0.011 0.036 3644 0.158 0.762 0.926
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus C-Section 0.022 0.034 3371 0.145 0.519 0.751 -0.054 0.032 3644 0.158 0.096 0.435
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Gestational Age -0.094 0.051 3371 0.146 0.063 0.159 0.061 0.047 3644 0.157 0.192 0.353
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Birth weight 0.090 0.045 3371 0.145 0.044 0.161 0.034 0.044 3644 0.157 0.445 0.619
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Tobacco use -0.012 0.052 3371 0.145 0.823 0.920 0.007 0.049 3644 0.158 0.881 0.898
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Alcohol use -0.067 0.037 3371 0.145 0.068 0.463 0.007 0.036 3644 0.158 0.835 0.964
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Marijuana use -0.008 0.071 3371 0.145 0.907 0.978 0.103 0.070 3644 0.158 0.143 0.647
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Pregnancy complications -0.044 0.032 3371 0.146 0.173 0.598 -0.079 0.031 3644 0.159 0.012 0.555
smri_vol_cdk_cuneuslh Cortical volume lh-cuneus Birth complications -0.020 0.035 3371 0.145 0.574 0.913 -0.071 0.033 3644 0.159 0.032 0.259
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Unplanned pregnancy -0.052 0.037 3371 0.080 0.155 0.959 0.018 0.036 3644 0.058 0.625 0.908
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal C-Section 0.087 0.034 3371 0.080 0.011 0.152 -0.005 0.033 3644 0.058 0.891 0.918
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Gestational Age 0.069 0.050 3371 0.078 0.168 0.326 0.075 0.047 3644 0.056 0.112 0.255
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Birth weight -0.077 0.045 3371 0.083 0.088 0.222 -0.051 0.045 3644 0.060 0.261 0.542
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Tobacco use 0.015 0.052 3371 0.080 0.773 0.920 -0.098 0.050 3644 0.058 0.049 0.302
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Alcohol use -0.074 0.037 3371 0.079 0.045 0.463 -0.035 0.036 3644 0.058 0.338 0.841
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Marijuana use 0.020 0.071 3371 0.080 0.778 0.951 -0.023 0.072 3644 0.058 0.747 0.958
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Pregnancy complications 0.015 0.032 3371 0.079 0.653 0.887 -0.005 0.032 3644 0.058 0.881 0.951
smri_vol_cdk_ehinallh Cortical volume lh-entorhinal Birth complications -0.027 0.036 3371 0.080 0.455 0.913 0.003 0.034 3644 0.058 0.931 0.993
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Unplanned pregnancy 0.041 0.034 3371 0.197 0.231 0.959 -0.018 0.033 3644 0.206 0.594 0.908
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform C-Section -0.041 0.032 3371 0.198 0.199 0.512 -0.033 0.030 3644 0.207 0.266 0.531
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Gestational Age -0.143 0.046 3371 0.201 0.002 0.015 -0.129 0.043 3644 0.213 0.003 0.025
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Birth weight 0.042 0.042 3371 0.195 0.314 0.496 -0.049 0.041 3644 0.208 0.235 0.542
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Tobacco use 0.022 0.048 3371 0.197 0.641 0.918 0.016 0.045 3644 0.206 0.724 0.852
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Alcohol use 0.023 0.034 3371 0.197 0.492 0.816 0.038 0.033 3644 0.207 0.244 0.839
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Marijuana use -0.005 0.065 3371 0.197 0.935 0.978 -0.025 0.065 3644 0.206 0.698 0.958
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Pregnancy complications -0.010 0.030 3371 0.197 0.743 0.902 -0.019 0.029 3644 0.207 0.510 0.858
smri_vol_cdk_fusiformlh Cortical volume lh-fusiform Birth complications -0.054 0.033 3371 0.198 0.100 0.913 -0.053 0.031 3644 0.208 0.087 0.332
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Unplanned pregnancy -0.021 0.034 3371 0.282 0.531 0.959 0.047 0.033 3644 0.286 0.162 0.905
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal C-Section -0.112 0.032 3371 0.287 0.000 0.029 -0.037 0.030 3644 0.286 0.221 0.531
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Gestational Age -0.192 0.046 3371 0.290 0.000 0.001 -0.142 0.044 3644 0.290 0.001 0.015
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Birth weight -0.144 0.042 3371 0.287 0.001 0.013 -0.072 0.041 3644 0.287 0.081 0.457
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Tobacco use -0.078 0.048 3371 0.283 0.107 0.628 -0.057 0.046 3644 0.286 0.212 0.495
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Alcohol use 0.071 0.034 3371 0.284 0.038 0.463 0.014 0.033 3644 0.286 0.664 0.902
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Marijuana use -0.045 0.066 3371 0.282 0.500 0.925 -0.027 0.066 3644 0.285 0.686 0.958
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Pregnancy complications -0.017 0.030 3371 0.283 0.566 0.818 -0.010 0.029 3644 0.285 0.726 0.915
smri_vol_cdk_ifpllh Cortical volume lh-inferiorparietal Birth complications -0.017 0.033 3371 0.282 0.614 0.913 -0.082 0.031 3644 0.287 0.008 0.188
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Unplanned pregnancy 0.003 0.033 3371 0.245 0.931 0.999 0.055 0.032 3644 0.259 0.084 0.905
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal C-Section -0.046 0.030 3371 0.246 0.126 0.429 0.036 0.029 3644 0.258 0.210 0.531
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Gestational Age 0.025 0.044 3371 0.245 0.572 0.709 -0.022 0.042 3644 0.259 0.599 0.796
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Birth weight 0.033 0.040 3371 0.244 0.406 0.552 0.035 0.040 3644 0.257 0.382 0.605
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Tobacco use -0.070 0.046 3371 0.246 0.128 0.628 -0.050 0.044 3644 0.258 0.259 0.517
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Alcohol use 0.024 0.033 3371 0.246 0.456 0.816 0.050 0.032 3644 0.260 0.118 0.781
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Marijuana use 0.074 0.063 3371 0.246 0.242 0.911 -0.019 0.063 3644 0.258 0.758 0.958
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Pregnancy complications 0.003 0.029 3371 0.245 0.925 0.989 0.019 0.028 3644 0.258 0.495 0.858
smri_vol_cdk_iftmlh Cortical volume lh-inferiortemporal Birth complications -0.040 0.032 3371 0.246 0.214 0.913 -0.029 0.030 3644 0.259 0.331 0.750
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Unplanned pregnancy -0.007 0.035 3371 0.214 0.834 0.959 0.056 0.035 3644 0.173 0.106 0.905
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate C-Section 0.022 0.032 3371 0.213 0.489 0.739 -0.037 0.032 3644 0.173 0.247 0.531
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Gestational Age -0.068 0.047 3371 0.215 0.151 0.302 -0.077 0.046 3644 0.175 0.089 0.217
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Birth weight 0.084 0.043 3371 0.212 0.050 0.168 -0.034 0.043 3644 0.174 0.437 0.619
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Tobacco use 0.018 0.049 3371 0.213 0.713 0.920 0.064 0.048 3644 0.173 0.182 0.485
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Alcohol use -0.006 0.035 3371 0.213 0.865 0.949 0.039 0.035 3644 0.173 0.264 0.841
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Marijuana use 0.049 0.067 3371 0.214 0.469 0.911 0.087 0.069 3644 0.173 0.206 0.668
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Pregnancy complications -0.010 0.031 3371 0.214 0.740 0.902 -0.001 0.031 3644 0.173 0.971 0.986
smri_vol_cdk_ihcatelh Cortical volume lh-isthmuscingulate Birth complications 0.012 0.034 3371 0.213 0.721 0.913 -0.023 0.032 3644 0.173 0.485 0.847
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Unplanned pregnancy 0.011 0.032 3371 0.357 0.729 0.959 0.043 0.033 3644 0.309 0.186 0.905
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital C-Section 0.031 0.030 3371 0.357 0.309 0.636 -0.088 0.030 3644 0.310 0.003 0.104
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Gestational Age -0.011 0.044 3371 0.357 0.811 0.861 0.081 0.043 3644 0.309 0.057 0.170
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Birth weight 0.107 0.039 3371 0.357 0.007 0.068 0.033 0.041 3644 0.308 0.421 0.619
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Tobacco use -0.010 0.046 3371 0.357 0.820 0.920 0.040 0.045 3644 0.308 0.374 0.614
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Alcohol use 0.042 0.032 3371 0.357 0.196 0.633 0.083 0.033 3644 0.310 0.011 0.384
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Marijuana use 0.209 0.062 3371 0.358 0.001 0.055 0.176 0.065 3644 0.310 0.007 0.229
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Pregnancy complications 0.030 0.029 3371 0.357 0.299 0.679 -0.004 0.029 3644 0.308 0.903 0.960
smri_vol_cdk_locclh Cortical volume lh-lateraloccipital Birth complications -0.002 0.031 3371 0.357 0.944 0.959 -0.008 0.031 3644 0.308 0.802 0.967
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Unplanned pregnancy 0.048 0.030 3371 0.409 0.117 0.959 0.025 0.030 3644 0.420 0.406 0.908
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal C-Section -0.058 0.028 3371 0.411 0.039 0.222 -0.032 0.027 3644 0.421 0.233 0.531
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Gestational Age -0.022 0.042 3371 0.410 0.594 0.709 -0.108 0.039 3644 0.424 0.006 0.036
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Birth weight -0.045 0.037 3371 0.411 0.225 0.411 -0.041 0.037 3644 0.421 0.266 0.542
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Tobacco use 0.037 0.043 3371 0.409 0.394 0.812 0.014 0.041 3644 0.420 0.741 0.852
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Alcohol use 0.016 0.030 3371 0.410 0.606 0.825 0.016 0.030 3644 0.421 0.591 0.900
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Marijuana use 0.112 0.059 3371 0.410 0.056 0.527 0.056 0.058 3644 0.421 0.338 0.821
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Pregnancy complications -0.031 0.027 3371 0.410 0.240 0.618 -0.009 0.026 3644 0.420 0.722 0.915
smri_vol_cdk_lobfrlh Cortical volume lh-lateralorbitofrontal Birth complications 0.012 0.029 3371 0.409 0.695 0.913 -0.049 0.027 3644 0.421 0.074 0.332
smri_vol_cdk_linguallh Cortical volume lh-lingual Unplanned pregnancy -0.040 0.036 3371 0.137 0.264 0.959 -0.015 0.035 3644 0.155 0.676 0.908
smri_vol_cdk_linguallh Cortical volume lh-lingual C-Section -0.030 0.034 3371 0.138 0.367 0.658 -0.007 0.032 3644 0.155 0.824 0.904
smri_vol_cdk_linguallh Cortical volume lh-lingual Gestational Age -0.185 0.050 3371 0.143 0.000 0.002 -0.017 0.046 3644 0.155 0.714 0.810
smri_vol_cdk_linguallh Cortical volume lh-lingual Birth weight -0.043 0.044 3371 0.138 0.325 0.502 -0.049 0.044 3644 0.156 0.265 0.542
smri_vol_cdk_linguallh Cortical volume lh-lingual Tobacco use -0.031 0.051 3371 0.137 0.543 0.910 -0.081 0.048 3644 0.155 0.095 0.333
smri_vol_cdk_linguallh Cortical volume lh-lingual Alcohol use 0.002 0.036 3371 0.137 0.950 0.981 -0.007 0.035 3644 0.155 0.837 0.964
smri_vol_cdk_linguallh Cortical volume lh-lingual Marijuana use 0.066 0.069 3371 0.137 0.344 0.911 -0.004 0.069 3644 0.155 0.956 0.982
smri_vol_cdk_linguallh Cortical volume lh-lingual Pregnancy complications -0.037 0.032 3371 0.138 0.245 0.618 0.059 0.031 3644 0.155 0.056 0.555
smri_vol_cdk_linguallh Cortical volume lh-lingual Birth complications -0.010 0.035 3371 0.137 0.772 0.913 0.003 0.033 3644 0.155 0.927 0.993
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Unplanned pregnancy 0.035 0.032 3371 0.009 0.272 0.959 -0.055 0.032 3644 0.048 0.090 0.905
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal C-Section 0.064 0.029 3371 0.010 0.030 0.207 0.040 0.029 3644 0.048 0.171 0.528
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Gestational Age 0.088 0.043 3371 0.009 0.040 0.131 0.016 0.042 3644 0.047 0.703 0.810
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Birth weight 0.028 0.039 3371 0.008 0.475 0.621 -0.014 0.041 3644 0.048 0.732 0.816
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Tobacco use 0.126 0.045 3371 0.010 0.005 0.328 -0.079 0.045 3644 0.047 0.078 0.333
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Alcohol use 0.017 0.032 3371 0.010 0.586 0.825 0.017 0.032 3644 0.048 0.610 0.900
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Marijuana use 0.140 0.061 3371 0.010 0.023 0.329 -0.106 0.064 3644 0.048 0.097 0.601
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Pregnancy complications 0.023 0.028 3371 0.009 0.412 0.752 -0.012 0.029 3644 0.048 0.680 0.915
smri_vol_cdk_mobfrlh Cortical volume lh-medialorbitofrontal Birth complications 0.023 0.031 3371 0.009 0.465 0.913 0.000 0.030 3644 0.048 0.995 0.995
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Unplanned pregnancy -0.001 0.033 3371 0.354 0.983 0.999 0.006 0.031 3644 0.364 0.838 0.959
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal C-Section -0.078 0.030 3371 0.357 0.010 0.152 -0.008 0.028 3644 0.364 0.773 0.876
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Gestational Age -0.192 0.044 3371 0.361 0.000 0.001 -0.097 0.041 3644 0.368 0.017 0.078
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Birth weight -0.158 0.040 3371 0.360 0.000 0.002 -0.107 0.039 3644 0.367 0.006 0.090
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Tobacco use 0.049 0.046 3371 0.355 0.290 0.805 -0.045 0.043 3644 0.364 0.294 0.540
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Alcohol use 0.076 0.033 3371 0.356 0.019 0.433 0.071 0.031 3644 0.366 0.023 0.515
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Marijuana use 0.046 0.063 3371 0.354 0.461 0.911 -0.062 0.062 3644 0.364 0.319 0.821
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Pregnancy complications -0.022 0.029 3371 0.355 0.454 0.752 -0.007 0.028 3644 0.364 0.801 0.936
smri_vol_cdk_mdtmlh Cortical volume lh-middletemporal Birth complications -0.027 0.031 3371 0.355 0.382 0.913 -0.026 0.029 3644 0.365 0.366 0.778
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Unplanned pregnancy -0.041 0.037 3371 0.101 0.271 0.959 0.005 0.037 3644 0.118 0.890 0.959
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal C-Section 0.040 0.035 3371 0.100 0.257 0.581 0.006 0.033 3644 0.118 0.859 0.912
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Gestational Age -0.009 0.051 3371 0.100 0.859 0.898 0.019 0.048 3644 0.117 0.691 0.810
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Birth weight 0.057 0.046 3371 0.099 0.214 0.411 -0.042 0.046 3644 0.119 0.355 0.604
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Tobacco use -0.106 0.053 3371 0.101 0.045 0.606 -0.024 0.050 3644 0.118 0.637 0.779
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Alcohol use 0.001 0.037 3371 0.100 0.981 0.981 -0.033 0.036 3644 0.118 0.361 0.841
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Marijuana use -0.135 0.072 3371 0.101 0.062 0.527 -0.052 0.072 3644 0.118 0.468 0.884
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Pregnancy complications 0.028 0.033 3371 0.100 0.396 0.752 0.042 0.032 3644 0.118 0.193 0.759
smri_vol_cdk_parahpallh Cortical volume lh-parahippocampal Birth complications -0.007 0.036 3371 0.100 0.846 0.913 -0.004 0.034 3644 0.118 0.914 0.993
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Unplanned pregnancy -0.027 0.037 3371 0.193 0.463 0.959 0.006 0.036 3644 0.185 0.858 0.959
smri_vol_cdk_paracnlh Cortical volume lh-paracentral C-Section 0.007 0.034 3371 0.193 0.844 0.933 -0.043 0.032 3644 0.185 0.183 0.531
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Gestational Age -0.057 0.050 3371 0.193 0.250 0.405 -0.054 0.046 3644 0.185 0.242 0.408
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Birth weight 0.031 0.045 3371 0.192 0.494 0.634 -0.073 0.045 3644 0.186 0.100 0.488
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Tobacco use -0.024 0.052 3371 0.193 0.648 0.918 -0.039 0.050 3644 0.185 0.432 0.652
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Alcohol use -0.027 0.037 3371 0.193 0.454 0.816 -0.052 0.036 3644 0.185 0.146 0.781
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Marijuana use -0.091 0.071 3371 0.193 0.201 0.802 -0.091 0.071 3644 0.185 0.200 0.668
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Pregnancy complications 0.026 0.032 3371 0.193 0.429 0.752 -0.019 0.032 3644 0.185 0.543 0.858
smri_vol_cdk_paracnlh Cortical volume lh-paracentral Birth complications 0.027 0.036 3371 0.193 0.446 0.913 -0.009 0.033 3644 0.185 0.788 0.967
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Unplanned pregnancy -0.014 0.037 3371 0.182 0.704 0.959 0.033 0.037 3644 0.141 0.364 0.908
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis C-Section -0.055 0.034 3371 0.183 0.105 0.412 -0.027 0.033 3644 0.140 0.414 0.640
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Gestational Age 0.015 0.049 3371 0.182 0.758 0.832 -0.053 0.047 3644 0.141 0.259 0.419
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Birth weight -0.012 0.045 3371 0.182 0.784 0.860 0.035 0.046 3644 0.140 0.446 0.619
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Tobacco use 0.065 0.052 3371 0.182 0.209 0.677 0.068 0.050 3644 0.141 0.176 0.485
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Alcohol use -0.038 0.037 3371 0.182 0.304 0.714 0.022 0.036 3644 0.141 0.538 0.900
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Marijuana use 0.078 0.071 3371 0.182 0.270 0.911 0.087 0.073 3644 0.141 0.228 0.704
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Pregnancy complications 0.005 0.032 3371 0.182 0.869 0.989 -0.027 0.032 3644 0.141 0.394 0.858
smri_vol_cdk_parsopclh Cortical volume lh-parsopercularis Birth complications 0.005 0.036 3371 0.182 0.879 0.928 0.000 0.034 3644 0.140 0.992 0.995
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Unplanned pregnancy 0.068 0.036 3371 0.182 0.063 0.959 -0.027 0.035 3644 0.193 0.438 0.908
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis C-Section -0.048 0.034 3371 0.182 0.156 0.475 -0.045 0.032 3644 0.193 0.160 0.517
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Gestational Age -0.097 0.048 3371 0.183 0.046 0.134 -0.134 0.045 3644 0.197 0.003 0.025
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Birth weight -0.082 0.045 3371 0.183 0.066 0.200 -0.011 0.044 3644 0.193 0.793 0.856
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Tobacco use 0.008 0.051 3371 0.181 0.873 0.928 -0.031 0.048 3644 0.193 0.516 0.672
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Alcohol use 0.043 0.036 3371 0.182 0.235 0.644 0.043 0.035 3644 0.193 0.215 0.812
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Marijuana use 0.029 0.071 3371 0.182 0.685 0.951 0.002 0.069 3644 0.193 0.979 0.982
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Pregnancy complications 0.026 0.032 3371 0.181 0.418 0.752 -0.033 0.031 3644 0.193 0.287 0.812
smri_vol_cdk_parsobislh Cortical volume lh-parsorbitalis Birth complications -0.004 0.035 3371 0.182 0.900 0.928 0.009 0.033 3644 0.193 0.793 0.967
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Unplanned pregnancy -0.004 0.039 3371 0.095 0.913 0.999 0.037 0.038 3644 0.100 0.323 0.905
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis C-Section -0.034 0.036 3371 0.096 0.348 0.658 -0.079 0.034 3644 0.101 0.021 0.176
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Gestational Age -0.033 0.052 3371 0.096 0.521 0.695 -0.102 0.049 3644 0.102 0.037 0.115
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Birth weight -0.031 0.048 3371 0.096 0.517 0.651 -0.067 0.047 3644 0.101 0.152 0.517
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Tobacco use -0.080 0.055 3371 0.096 0.144 0.628 0.071 0.052 3644 0.100 0.171 0.485
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Alcohol use -0.051 0.039 3371 0.095 0.188 0.633 0.005 0.038 3644 0.099 0.902 0.964
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Marijuana use 0.049 0.075 3371 0.095 0.517 0.925 0.115 0.074 3644 0.100 0.122 0.604
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Pregnancy complications 0.072 0.034 3371 0.095 0.035 0.485 -0.045 0.033 3644 0.100 0.179 0.759
smri_vol_cdk_parstgrislh Cortical volume lh-parstriangularis Birth complications 0.014 0.038 3371 0.095 0.714 0.913 -0.083 0.035 3644 0.101 0.017 0.223
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Unplanned pregnancy 0.047 0.037 3371 0.159 0.209 0.959 -0.025 0.036 3644 0.197 0.475 0.908
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine C-Section 0.034 0.035 3371 0.159 0.331 0.658 -0.041 0.032 3644 0.197 0.210 0.531
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Gestational Age -0.064 0.052 3371 0.159 0.217 0.377 0.110 0.047 3644 0.198 0.020 0.083
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Birth weight 0.053 0.045 3371 0.159 0.236 0.411 -0.058 0.044 3644 0.197 0.180 0.542
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Tobacco use -0.049 0.053 3371 0.159 0.351 0.805 -0.045 0.049 3644 0.197 0.364 0.614
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Alcohol use -0.069 0.037 3371 0.160 0.065 0.463 -0.049 0.036 3644 0.198 0.168 0.781
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Marijuana use 0.058 0.072 3371 0.159 0.418 0.911 0.093 0.070 3644 0.197 0.184 0.668
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Pregnancy complications -0.088 0.033 3371 0.161 0.008 0.258 -0.034 0.032 3644 0.197 0.276 0.812
smri_vol_cdk_pericclh Cortical volume lh-pericalcarine Birth complications -0.022 0.036 3371 0.159 0.530 0.913 -0.022 0.033 3644 0.197 0.504 0.847
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Unplanned pregnancy 0.016 0.033 3371 0.326 0.624 0.959 0.017 0.032 3644 0.331 0.607 0.908
smri_vol_cdk_postcnlh Cortical volume lh-postcentral C-Section 0.006 0.031 3371 0.326 0.851 0.933 -0.004 0.029 3644 0.330 0.888 0.918
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Gestational Age -0.117 0.045 3371 0.328 0.009 0.054 -0.121 0.042 3644 0.333 0.004 0.025
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Birth weight 0.003 0.041 3371 0.326 0.948 0.963 0.022 0.040 3644 0.330 0.579 0.766
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Tobacco use -0.028 0.047 3371 0.326 0.548 0.910 -0.116 0.045 3644 0.331 0.009 0.135
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Alcohol use 0.049 0.033 3371 0.327 0.142 0.576 -0.017 0.032 3644 0.330 0.601 0.900
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Marijuana use 0.042 0.064 3371 0.326 0.511 0.925 0.008 0.064 3644 0.330 0.902 0.958
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Pregnancy complications -0.036 0.029 3371 0.326 0.218 0.598 -0.036 0.029 3644 0.331 0.207 0.759
smri_vol_cdk_postcnlh Cortical volume lh-postcentral Birth complications -0.001 0.032 3371 0.326 0.980 0.980 -0.057 0.030 3644 0.331 0.060 0.291
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Unplanned pregnancy -0.036 0.035 3371 0.263 0.307 0.959 0.025 0.035 3644 0.231 0.466 0.908
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate C-Section -0.036 0.032 3371 0.264 0.266 0.585 -0.011 0.032 3644 0.231 0.735 0.854
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Gestational Age -0.070 0.047 3371 0.264 0.133 0.282 -0.064 0.045 3644 0.231 0.158 0.317
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Birth weight 0.008 0.043 3371 0.263 0.849 0.894 -0.056 0.043 3644 0.231 0.201 0.542
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Tobacco use 0.003 0.049 3371 0.263 0.957 0.957 -0.033 0.048 3644 0.231 0.497 0.672
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Alcohol use 0.056 0.035 3371 0.264 0.109 0.571 -0.008 0.035 3644 0.231 0.825 0.964
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Marijuana use -0.020 0.067 3371 0.263 0.766 0.951 -0.089 0.069 3644 0.231 0.198 0.668
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Pregnancy complications -0.021 0.031 3371 0.263 0.486 0.752 -0.028 0.031 3644 0.231 0.366 0.858
smri_vol_cdk_ptcatelh Cortical volume lh-posteriorcingulate Birth complications -0.046 0.034 3371 0.264 0.174 0.913 0.001 0.032 3644 0.231 0.964 0.993
smri_vol_cdk_precnlh Cortical volume lh-precentral Unplanned pregnancy -0.017 0.032 3371 0.359 0.606 0.959 -0.021 0.031 3644 0.373 0.493 0.908
smri_vol_cdk_precnlh Cortical volume lh-precentral C-Section 0.017 0.030 3371 0.359 0.579 0.757 0.011 0.028 3644 0.373 0.697 0.846
smri_vol_cdk_precnlh Cortical volume lh-precentral Gestational Age -0.090 0.044 3371 0.360 0.040 0.131 -0.063 0.040 3644 0.374 0.119 0.261
smri_vol_cdk_precnlh Cortical volume lh-precentral Birth weight 0.033 0.039 3371 0.359 0.402 0.552 0.001 0.039 3644 0.373 0.990 0.990
smri_vol_cdk_precnlh Cortical volume lh-precentral Tobacco use -0.041 0.045 3371 0.360 0.361 0.805 -0.140 0.043 3644 0.375 0.001 0.068
smri_vol_cdk_precnlh Cortical volume lh-precentral Alcohol use 0.015 0.032 3371 0.359 0.644 0.833 -0.060 0.031 3644 0.373 0.054 0.732
smri_vol_cdk_precnlh Cortical volume lh-precentral Marijuana use 0.098 0.062 3371 0.360 0.113 0.668 -0.081 0.061 3644 0.373 0.185 0.668
smri_vol_cdk_precnlh Cortical volume lh-precentral Pregnancy complications -0.003 0.028 3371 0.359 0.905 0.989 -0.017 0.027 3644 0.373 0.534 0.858
smri_vol_cdk_precnlh Cortical volume lh-precentral Birth complications -0.022 0.031 3371 0.359 0.479 0.913 -0.073 0.029 3644 0.374 0.012 0.200
smri_vol_cdk_pclh Cortical volume lh-precuneus Unplanned pregnancy 0.009 0.031 3371 0.377 0.771 0.959 0.033 0.031 3644 0.362 0.289 0.905
smri_vol_cdk_pclh Cortical volume lh-precuneus C-Section 0.009 0.029 3371 0.377 0.742 0.870 -0.025 0.028 3644 0.362 0.371 0.615
smri_vol_cdk_pclh Cortical volume lh-precuneus Gestational Age -0.040 0.042 3371 0.378 0.339 0.501 -0.094 0.041 3644 0.365 0.022 0.084
smri_vol_cdk_pclh Cortical volume lh-precuneus Birth weight -0.065 0.038 3371 0.379 0.084 0.219 0.017 0.039 3644 0.361 0.660 0.774
smri_vol_cdk_pclh Cortical volume lh-precuneus Tobacco use -0.056 0.044 3371 0.378 0.196 0.667 0.028 0.043 3644 0.362 0.517 0.672
smri_vol_cdk_pclh Cortical volume lh-precuneus Alcohol use 0.018 0.031 3371 0.377 0.552 0.825 0.030 0.031 3644 0.362 0.332 0.841
smri_vol_cdk_pclh Cortical volume lh-precuneus Marijuana use 0.149 0.059 3371 0.378 0.012 0.329 -0.011 0.062 3644 0.362 0.864 0.958
smri_vol_cdk_pclh Cortical volume lh-precuneus Pregnancy complications -0.037 0.027 3371 0.378 0.179 0.598 -0.053 0.028 3644 0.363 0.057 0.555
smri_vol_cdk_pclh Cortical volume lh-precuneus Birth complications 0.012 0.030 3371 0.377 0.685 0.913 0.002 0.029 3644 0.362 0.952 0.993
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Unplanned pregnancy 0.006 0.034 3371 0.281 0.869 0.969 0.031 0.033 3644 0.294 0.346 0.906
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate C-Section 0.001 0.032 3371 0.281 0.980 0.998 0.059 0.030 3644 0.294 0.051 0.288
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Gestational Age -0.063 0.046 3371 0.281 0.176 0.332 -0.151 0.043 3644 0.297 0.000 0.008
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Birth weight -0.018 0.042 3371 0.281 0.668 0.783 -0.020 0.041 3644 0.294 0.620 0.766
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Tobacco use -0.072 0.048 3371 0.281 0.137 0.628 0.070 0.046 3644 0.294 0.127 0.412
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Alcohol use -0.009 0.034 3371 0.281 0.794 0.885 0.012 0.033 3644 0.294 0.723 0.964
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Marijuana use -0.093 0.066 3371 0.281 0.160 0.718 0.044 0.066 3644 0.294 0.498 0.891
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Pregnancy complications 0.034 0.030 3371 0.281 0.255 0.620 -0.048 0.029 3644 0.294 0.104 0.759
smri_vol_cdk_rracatelh Cortical volume lh-rostralanteriorcingulate Birth complications -0.037 0.033 3371 0.281 0.262 0.913 -0.069 0.031 3644 0.295 0.026 0.248
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Unplanned pregnancy 0.020 0.032 3371 0.355 0.526 0.959 0.011 0.031 3644 0.368 0.718 0.908
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal C-Section 0.009 0.029 3371 0.355 0.769 0.872 0.009 0.028 3644 0.368 0.741 0.854
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Gestational Age -0.083 0.043 3371 0.357 0.051 0.134 -0.038 0.040 3644 0.369 0.338 0.513
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Birth weight 0.046 0.039 3371 0.354 0.236 0.411 0.042 0.038 3644 0.367 0.279 0.542
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Tobacco use -0.072 0.045 3371 0.355 0.105 0.628 -0.084 0.042 3644 0.368 0.048 0.302
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Alcohol use -0.030 0.032 3371 0.355 0.348 0.717 0.024 0.031 3644 0.368 0.432 0.877
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Marijuana use 0.001 0.061 3371 0.355 0.982 0.982 -0.054 0.061 3644 0.368 0.378 0.857
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Pregnancy complications -0.016 0.028 3371 0.355 0.577 0.818 -0.033 0.027 3644 0.368 0.230 0.759
smri_vol_cdk_rrmdfrlh Cortical volume lh-rostralmiddlefrontal Birth complications -0.009 0.031 3371 0.355 0.767 0.913 -0.009 0.029 3644 0.368 0.765 0.967
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Unplanned pregnancy 0.019 0.030 3371 0.360 0.520 0.959 0.035 0.028 3644 0.404 0.225 0.905
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal C-Section 0.012 0.028 3371 0.360 0.672 0.831 -0.005 0.026 3644 0.403 0.846 0.912
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Gestational Age -0.091 0.041 3371 0.362 0.028 0.110 -0.043 0.037 3644 0.405 0.246 0.408
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Birth weight 0.054 0.036 3371 0.358 0.138 0.312 -0.040 0.036 3644 0.404 0.257 0.542
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Tobacco use 0.011 0.042 3371 0.360 0.802 0.920 -0.052 0.039 3644 0.403 0.184 0.485
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Alcohol use 0.008 0.030 3371 0.360 0.789 0.885 -0.025 0.028 3644 0.403 0.371 0.841
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Marijuana use 0.021 0.058 3371 0.360 0.718 0.951 0.030 0.056 3644 0.403 0.590 0.914
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Pregnancy complications 0.002 0.026 3371 0.360 0.941 0.989 -0.058 0.025 3644 0.405 0.021 0.555
smri_vol_cdk_sufrlh Cortical volume lh-superiorfrontal Birth complications -0.019 0.029 3371 0.360 0.513 0.913 -0.037 0.027 3644 0.404 0.167 0.516
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Unplanned pregnancy 0.017 0.033 3371 0.315 0.605 0.959 0.019 0.033 3644 0.293 0.565 0.908
smri_vol_cdk_supllh Cortical volume lh-superiorparietal C-Section 0.009 0.031 3371 0.315 0.764 0.872 -0.059 0.030 3644 0.295 0.049 0.288
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Gestational Age -0.036 0.045 3371 0.315 0.430 0.585 -0.118 0.044 3644 0.297 0.007 0.037
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Birth weight -0.044 0.041 3371 0.316 0.279 0.452 0.021 0.041 3644 0.292 0.602 0.766
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Tobacco use -0.061 0.047 3371 0.315 0.192 0.667 0.029 0.046 3644 0.293 0.523 0.672
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Alcohol use -0.063 0.033 3371 0.315 0.056 0.463 0.043 0.033 3644 0.293 0.196 0.812
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Marijuana use 0.098 0.064 3371 0.315 0.126 0.668 0.016 0.065 3644 0.293 0.811 0.958
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Pregnancy complications -0.083 0.029 3371 0.317 0.005 0.258 -0.020 0.029 3644 0.293 0.503 0.858
smri_vol_cdk_supllh Cortical volume lh-superiorparietal Birth complications -0.014 0.032 3371 0.315 0.659 0.913 -0.024 0.031 3644 0.293 0.430 0.847
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Unplanned pregnancy 0.012 0.032 3371 0.358 0.711 0.959 0.003 0.031 3644 0.364 0.921 0.959
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal C-Section -0.037 0.030 3371 0.358 0.211 0.512 0.013 0.028 3644 0.364 0.635 0.784
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Gestational Age -0.096 0.044 3371 0.360 0.029 0.110 -0.011 0.041 3644 0.364 0.790 0.840
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Birth weight 0.088 0.039 3371 0.356 0.023 0.134 0.059 0.039 3644 0.363 0.133 0.510
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Tobacco use -0.006 0.045 3371 0.358 0.889 0.930 -0.128 0.043 3644 0.364 0.003 0.068
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Alcohol use -0.004 0.032 3371 0.358 0.905 0.962 -0.031 0.031 3644 0.363 0.314 0.841
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Marijuana use 0.024 0.061 3371 0.358 0.694 0.951 -0.111 0.062 3644 0.364 0.071 0.601
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Pregnancy complications -0.020 0.028 3371 0.358 0.467 0.752 0.001 0.028 3644 0.364 0.965 0.986
smri_vol_cdk_sutmlh Cortical volume lh-superiortemporal Birth complications -0.028 0.031 3371 0.358 0.357 0.913 0.020 0.029 3644 0.363 0.501 0.847
smri_vol_cdk_smlh Cortical volume lh-supramarginal Unplanned pregnancy -0.024 0.033 3371 0.323 0.473 0.959 0.045 0.032 3644 0.358 0.158 0.905
smri_vol_cdk_smlh Cortical volume lh-supramarginal C-Section -0.024 0.031 3371 0.323 0.427 0.701 0.008 0.029 3644 0.358 0.792 0.883
smri_vol_cdk_smlh Cortical volume lh-supramarginal Gestational Age -0.039 0.045 3371 0.323 0.382 0.541 -0.128 0.041 3644 0.362 0.002 0.020
smri_vol_cdk_smlh Cortical volume lh-supramarginal Birth weight -0.022 0.041 3371 0.323 0.590 0.717 -0.057 0.040 3644 0.359 0.147 0.517
smri_vol_cdk_smlh Cortical volume lh-supramarginal Tobacco use -0.042 0.047 3371 0.323 0.367 0.805 -0.043 0.044 3644 0.358 0.325 0.578
smri_vol_cdk_smlh Cortical volume lh-supramarginal Alcohol use -0.025 0.033 3371 0.322 0.453 0.816 0.022 0.032 3644 0.358 0.483 0.900
smri_vol_cdk_smlh Cortical volume lh-supramarginal Marijuana use -0.020 0.064 3371 0.322 0.756 0.951 -0.097 0.063 3644 0.358 0.124 0.604
smri_vol_cdk_smlh Cortical volume lh-supramarginal Pregnancy complications -0.052 0.029 3371 0.323 0.077 0.485 -0.018 0.028 3644 0.358 0.510 0.858
smri_vol_cdk_smlh Cortical volume lh-supramarginal Birth complications 0.023 0.032 3371 0.322 0.480 0.913 -0.005 0.030 3644 0.358 0.876 0.993
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Unplanned pregnancy -0.044 0.038 3371 0.105 0.243 0.959 0.005 0.037 3644 0.099 0.892 0.959
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole C-Section 0.114 0.035 3371 0.108 0.001 0.029 0.086 0.034 3644 0.101 0.011 0.119
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Gestational Age 0.027 0.050 3371 0.105 0.593 0.709 -0.009 0.048 3644 0.099 0.855 0.881
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Birth weight 0.094 0.047 3371 0.106 0.043 0.161 0.073 0.047 3644 0.100 0.116 0.493
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Tobacco use 0.027 0.053 3371 0.105 0.610 0.918 0.015 0.051 3644 0.099 0.774 0.852
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Alcohol use 0.045 0.038 3371 0.105 0.237 0.644 0.038 0.037 3644 0.099 0.312 0.841
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Marijuana use 0.072 0.073 3371 0.105 0.328 0.911 0.040 0.074 3644 0.099 0.591 0.914
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Pregnancy complications 0.012 0.033 3371 0.105 0.716 0.901 0.022 0.033 3644 0.099 0.494 0.858
smri_vol_cdk_frpolelh Cortical volume lh-frontalpole Birth complications -0.008 0.037 3371 0.105 0.826 0.913 -0.008 0.035 3644 0.099 0.811 0.967
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Unplanned pregnancy -0.007 0.039 3371 0.044 0.846 0.959 -0.018 0.038 3644 0.042 0.647 0.908
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole C-Section 0.038 0.036 3371 0.045 0.288 0.611 0.036 0.035 3644 0.042 0.298 0.578
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Gestational Age -0.021 0.052 3371 0.044 0.691 0.771 -0.010 0.049 3644 0.042 0.846 0.881
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Birth weight 0.053 0.047 3371 0.044 0.266 0.441 0.112 0.048 3644 0.042 0.019 0.183
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Tobacco use -0.013 0.054 3371 0.044 0.805 0.920 -0.058 0.053 3644 0.042 0.269 0.523
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Alcohol use -0.094 0.039 3371 0.045 0.015 0.433 -0.009 0.038 3644 0.042 0.812 0.964
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Marijuana use -0.015 0.075 3371 0.044 0.843 0.978 -0.014 0.076 3644 0.042 0.859 0.958
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Pregnancy complications 0.034 0.034 3371 0.045 0.314 0.689 0.025 0.034 3644 0.042 0.459 0.858
smri_vol_cdk_tmpolelh Cortical volume lh-temporalpole Birth complications -0.027 0.038 3371 0.045 0.471 0.913 -0.019 0.036 3644 0.042 0.604 0.913
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Unplanned pregnancy -0.002 0.037 3371 0.166 0.965 0.999 -0.016 0.037 3644 0.153 0.663 0.908
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal C-Section -0.016 0.034 3371 0.166 0.636 0.801 -0.021 0.033 3644 0.153 0.522 0.697
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Gestational Age -0.049 0.050 3371 0.166 0.329 0.497 -0.035 0.047 3644 0.153 0.461 0.653
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Birth weight 0.015 0.045 3371 0.165 0.746 0.860 0.068 0.045 3644 0.153 0.135 0.510
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Tobacco use 0.080 0.052 3371 0.166 0.124 0.628 -0.086 0.050 3644 0.153 0.089 0.333
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Alcohol use 0.022 0.037 3371 0.166 0.550 0.825 -0.026 0.036 3644 0.153 0.468 0.900
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Marijuana use 0.066 0.071 3371 0.166 0.356 0.911 -0.043 0.072 3644 0.153 0.550 0.913
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Pregnancy complications 0.020 0.033 3371 0.166 0.530 0.797 -0.032 0.032 3644 0.153 0.318 0.858
smri_vol_cdk_trvtmlh Cortical volume lh-transversetemporal Birth complications 0.011 0.036 3371 0.166 0.768 0.913 -0.066 0.034 3644 0.154 0.052 0.275
smri_vol_cdk_insulalh Cortical volume lh-insula Unplanned pregnancy 0.027 0.031 3371 0.303 0.395 0.959 0.016 0.030 3644 0.324 0.604 0.908
smri_vol_cdk_insulalh Cortical volume lh-insula C-Section -0.054 0.029 3371 0.305 0.066 0.298 -0.025 0.028 3644 0.324 0.358 0.609
smri_vol_cdk_insulalh Cortical volume lh-insula Gestational Age -0.107 0.043 3371 0.306 0.013 0.070 -0.089 0.040 3644 0.327 0.025 0.091
smri_vol_cdk_insulalh Cortical volume lh-insula Birth weight -0.100 0.038 3371 0.307 0.009 0.068 -0.100 0.038 3644 0.327 0.008 0.090
smri_vol_cdk_insulalh Cortical volume lh-insula Tobacco use -0.027 0.044 3371 0.303 0.546 0.910 0.049 0.042 3644 0.325 0.243 0.517
smri_vol_cdk_insulalh Cortical volume lh-insula Alcohol use -0.044 0.032 3371 0.302 0.161 0.576 0.008 0.030 3644 0.324 0.788 0.964
smri_vol_cdk_insulalh Cortical volume lh-insula Marijuana use 0.002 0.061 3371 0.303 0.978 0.982 0.177 0.060 3644 0.326 0.003 0.208
smri_vol_cdk_insulalh Cortical volume lh-insula Pregnancy complications -0.063 0.028 3371 0.305 0.024 0.485 -0.033 0.027 3644 0.325 0.214 0.759
smri_vol_cdk_insulalh Cortical volume lh-insula Birth complications -0.016 0.030 3371 0.303 0.604 0.913 -0.017 0.028 3644 0.324 0.535 0.847
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Unplanned pregnancy 0.011 0.037 3371 0.142 0.756 0.959 0.016 0.036 3644 0.135 0.649 0.908
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus C-Section -0.044 0.034 3371 0.143 0.195 0.512 -0.016 0.032 3644 0.135 0.613 0.772
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Gestational Age -0.193 0.049 3371 0.149 0.000 0.002 -0.112 0.046 3644 0.140 0.016 0.076
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Birth weight -0.066 0.045 3371 0.144 0.149 0.328 -0.037 0.045 3644 0.136 0.409 0.619
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Tobacco use 0.079 0.052 3371 0.143 0.128 0.628 -0.026 0.049 3644 0.135 0.590 0.743
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Alcohol use 0.040 0.037 3371 0.143 0.280 0.680 0.024 0.036 3644 0.135 0.495 0.900
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Marijuana use -0.003 0.072 3371 0.142 0.962 0.982 -0.017 0.071 3644 0.135 0.805 0.958
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Pregnancy complications -0.056 0.032 3371 0.144 0.087 0.485 0.007 0.031 3644 0.135 0.824 0.936
smri_vol_cdk_banksstsrh Cortical volume rh-Banks of Superior Temporal Sulcus Birth complications -0.016 0.036 3371 0.142 0.655 0.913 -0.022 0.033 3644 0.135 0.499 0.847
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Unplanned pregnancy -0.017 0.038 3371 0.089 0.661 0.959 0.042 0.038 3644 0.082 0.265 0.905
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate C-Section 0.000 0.036 3371 0.089 0.998 0.998 0.040 0.034 3644 0.082 0.237 0.531
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Gestational Age -0.077 0.051 3371 0.090 0.131 0.282 -0.006 0.049 3644 0.082 0.904 0.917
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Birth weight -0.040 0.047 3371 0.090 0.395 0.552 0.042 0.047 3644 0.082 0.373 0.604
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Tobacco use 0.018 0.054 3371 0.089 0.741 0.920 0.015 0.052 3644 0.082 0.777 0.852
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Alcohol use 0.056 0.038 3371 0.090 0.145 0.576 -0.020 0.038 3644 0.082 0.602 0.900
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Marijuana use 0.024 0.074 3371 0.089 0.742 0.951 -0.025 0.075 3644 0.082 0.735 0.958
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Pregnancy complications -0.045 0.034 3371 0.090 0.181 0.598 -0.013 0.033 3644 0.082 0.706 0.915
smri_vol_cdk_cdacaterh Cortical volume rh-caudalanteriorcingulate Birth complications -0.032 0.037 3371 0.090 0.394 0.913 0.017 0.035 3644 0.082 0.620 0.916
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Unplanned pregnancy 0.015 0.035 3371 0.167 0.679 0.959 0.038 0.034 3644 0.182 0.268 0.905
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal C-Section 0.027 0.033 3371 0.166 0.415 0.701 0.021 0.031 3644 0.182 0.491 0.682
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Gestational Age -0.043 0.048 3371 0.168 0.363 0.525 -0.103 0.044 3644 0.186 0.021 0.083
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Birth weight 0.038 0.043 3371 0.166 0.381 0.552 -0.007 0.043 3644 0.182 0.870 0.896
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Tobacco use -0.057 0.050 3371 0.167 0.247 0.764 -0.078 0.047 3644 0.182 0.098 0.333
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Alcohol use -0.016 0.035 3371 0.166 0.656 0.833 -0.003 0.034 3644 0.182 0.934 0.964
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Marijuana use -0.020 0.068 3371 0.167 0.771 0.951 0.015 0.068 3644 0.182 0.825 0.958
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Pregnancy complications -0.001 0.031 3371 0.167 0.969 0.998 -0.049 0.030 3644 0.183 0.102 0.759
smri_vol_cdk_cdmdfrrh Cortical volume rh-caudalmiddlefrontal Birth complications -0.019 0.034 3371 0.167 0.585 0.913 -0.053 0.032 3644 0.183 0.098 0.332
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Unplanned pregnancy 0.017 0.035 3371 0.234 0.638 0.959 0.014 0.035 3644 0.201 0.697 0.908
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus C-Section -0.002 0.033 3371 0.234 0.949 0.994 -0.049 0.032 3644 0.202 0.126 0.509
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Gestational Age -0.051 0.048 3371 0.234 0.289 0.447 0.016 0.046 3644 0.201 0.730 0.814
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Birth weight 0.087 0.043 3371 0.234 0.045 0.161 0.057 0.044 3644 0.201 0.197 0.542
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Tobacco use 0.045 0.050 3371 0.234 0.367 0.805 0.106 0.049 3644 0.203 0.030 0.293
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Alcohol use -0.035 0.035 3371 0.234 0.315 0.714 0.044 0.035 3644 0.202 0.212 0.812
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Marijuana use 0.153 0.068 3371 0.234 0.024 0.329 0.123 0.070 3644 0.202 0.077 0.601
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Pregnancy complications 0.023 0.031 3371 0.234 0.467 0.752 -0.041 0.031 3644 0.202 0.185 0.759
smri_vol_cdk_cuneusrh Cortical volume rh-cuneus Birth complications -0.075 0.034 3371 0.235 0.027 0.561 -0.087 0.033 3644 0.202 0.008 0.188
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Unplanned pregnancy 0.021 0.038 3371 0.106 0.578 0.959 -0.024 0.038 3644 0.088 0.517 0.908
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal C-Section 0.057 0.035 3371 0.106 0.109 0.412 0.052 0.034 3644 0.088 0.127 0.509
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Gestational Age 0.005 0.051 3371 0.106 0.919 0.947 -0.052 0.048 3644 0.088 0.283 0.448
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Birth weight -0.006 0.047 3371 0.106 0.905 0.932 -0.015 0.047 3644 0.088 0.755 0.828
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Tobacco use -0.051 0.054 3371 0.106 0.337 0.805 -0.024 0.052 3644 0.088 0.642 0.779
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Alcohol use -0.055 0.038 3371 0.106 0.146 0.576 -0.034 0.037 3644 0.088 0.367 0.841
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Marijuana use 0.017 0.074 3371 0.106 0.818 0.976 0.037 0.075 3644 0.088 0.618 0.927
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Pregnancy complications 0.026 0.034 3371 0.106 0.439 0.752 -0.009 0.033 3644 0.088 0.778 0.936
smri_vol_cdk_ehinalrh Cortical volume rh-entorhinal Birth complications -0.024 0.037 3371 0.106 0.511 0.913 -0.009 0.035 3644 0.088 0.800 0.967
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Unplanned pregnancy 0.043 0.033 3371 0.289 0.197 0.959 0.033 0.032 3644 0.307 0.303 0.905
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform C-Section -0.068 0.031 3371 0.289 0.028 0.207 -0.025 0.029 3644 0.307 0.392 0.620
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Gestational Age -0.169 0.045 3371 0.292 0.000 0.002 -0.107 0.042 3644 0.310 0.011 0.056
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Birth weight 0.002 0.041 3371 0.288 0.964 0.964 -0.036 0.040 3644 0.308 0.370 0.604
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Tobacco use 0.033 0.047 3371 0.288 0.487 0.894 -0.015 0.044 3644 0.306 0.734 0.852
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Alcohol use 0.013 0.033 3371 0.289 0.686 0.833 0.010 0.032 3644 0.307 0.749 0.964
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Marijuana use 0.005 0.064 3371 0.288 0.934 0.978 -0.008 0.064 3644 0.307 0.897 0.958
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Pregnancy complications -0.056 0.029 3371 0.290 0.058 0.485 0.014 0.028 3644 0.306 0.613 0.915
smri_vol_cdk_fusiformrh Cortical volume rh-fusiform Birth complications -0.030 0.032 3371 0.289 0.351 0.913 -0.059 0.030 3644 0.308 0.049 0.275
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Unplanned pregnancy 0.011 0.033 3371 0.303 0.753 0.959 0.033 0.033 3644 0.287 0.320 0.905
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal C-Section -0.065 0.031 3371 0.305 0.036 0.222 0.035 0.030 3644 0.286 0.241 0.531
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Gestational Age -0.148 0.046 3371 0.308 0.001 0.011 -0.058 0.043 3644 0.288 0.172 0.325
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Birth weight -0.093 0.041 3371 0.306 0.023 0.134 -0.042 0.041 3644 0.287 0.304 0.559
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Tobacco use -0.023 0.047 3371 0.303 0.621 0.918 -0.117 0.045 3644 0.287 0.010 0.135
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Alcohol use 0.048 0.033 3371 0.304 0.154 0.576 0.005 0.033 3644 0.286 0.881 0.964
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Marijuana use 0.102 0.065 3371 0.303 0.114 0.668 -0.113 0.065 3644 0.287 0.081 0.601
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Pregnancy complications -0.023 0.030 3371 0.303 0.427 0.752 -0.022 0.029 3644 0.287 0.454 0.858
smri_vol_cdk_ifplrh Cortical volume rh-inferiorparietal Birth complications -0.045 0.032 3371 0.304 0.164 0.913 -0.071 0.031 3644 0.288 0.020 0.223
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Unplanned pregnancy -0.008 0.034 3371 0.278 0.803 0.959 -0.013 0.033 3644 0.286 0.688 0.908
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal C-Section -0.019 0.031 3371 0.279 0.543 0.754 0.017 0.030 3644 0.287 0.559 0.717
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Gestational Age 0.056 0.046 3371 0.278 0.221 0.377 0.016 0.043 3644 0.286 0.700 0.810
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Birth weight 0.108 0.041 3371 0.277 0.009 0.068 0.064 0.041 3644 0.286 0.114 0.493
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Tobacco use -0.094 0.047 3371 0.280 0.048 0.606 -0.056 0.045 3644 0.286 0.213 0.495
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Alcohol use -0.017 0.034 3371 0.278 0.607 0.825 0.016 0.033 3644 0.287 0.634 0.900
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Marijuana use -0.032 0.065 3371 0.278 0.619 0.951 -0.053 0.065 3644 0.286 0.416 0.883
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Pregnancy complications 0.050 0.030 3371 0.278 0.094 0.485 0.023 0.029 3644 0.286 0.429 0.858
smri_vol_cdk_iftmrh Cortical volume rh-inferiortemporal Birth complications 0.015 0.033 3371 0.278 0.647 0.913 0.021 0.030 3644 0.286 0.485 0.847
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Unplanned pregnancy 0.000 0.036 3371 0.103 0.990 0.999 0.016 0.035 3644 0.140 0.660 0.908
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate C-Section 0.048 0.034 3371 0.102 0.161 0.475 -0.031 0.032 3644 0.140 0.338 0.604
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Gestational Age -0.154 0.050 3371 0.109 0.002 0.015 -0.044 0.046 3644 0.142 0.340 0.513
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Birth weight 0.022 0.045 3371 0.102 0.626 0.747 -0.099 0.044 3644 0.144 0.025 0.215
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Tobacco use -0.096 0.051 3371 0.104 0.062 0.606 0.009 0.049 3644 0.140 0.861 0.898
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Alcohol use 0.001 0.037 3371 0.103 0.974 0.981 -0.028 0.035 3644 0.139 0.435 0.877
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Marijuana use -0.043 0.070 3371 0.103 0.542 0.934 -0.119 0.070 3644 0.140 0.088 0.601
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Pregnancy complications 0.003 0.032 3371 0.103 0.936 0.989 -0.037 0.031 3644 0.141 0.234 0.759
smri_vol_cdk_ihcaterh Cortical volume rh-isthmuscingulate Birth complications -0.042 0.035 3371 0.104 0.240 0.913 0.004 0.033 3644 0.140 0.913 0.993
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Unplanned pregnancy 0.015 0.032 3371 0.382 0.630 0.959 0.075 0.032 3644 0.357 0.018 0.905
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital C-Section -0.036 0.030 3371 0.382 0.220 0.515 -0.062 0.029 3644 0.357 0.029 0.221
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Gestational Age 0.001 0.043 3371 0.382 0.986 0.986 0.004 0.041 3644 0.356 0.921 0.921
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Birth weight 0.082 0.039 3371 0.382 0.034 0.145 0.007 0.039 3644 0.356 0.852 0.891
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Tobacco use -0.012 0.045 3371 0.382 0.797 0.920 -0.007 0.044 3644 0.356 0.868 0.898
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Alcohol use -0.014 0.032 3371 0.382 0.670 0.833 0.044 0.032 3644 0.357 0.162 0.781
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Marijuana use 0.050 0.061 3371 0.382 0.416 0.911 0.131 0.063 3644 0.357 0.037 0.601
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Pregnancy complications 0.011 0.028 3371 0.382 0.707 0.901 -0.010 0.028 3644 0.356 0.716 0.915
smri_vol_cdk_loccrh Cortical volume rh-lateraloccipital Birth complications -0.030 0.031 3371 0.382 0.321 0.913 0.023 0.029 3644 0.357 0.431 0.847
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Unplanned pregnancy 0.020 0.030 3371 0.151 0.510 0.959 -0.038 0.030 3644 0.196 0.203 0.905
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal C-Section -0.063 0.028 3371 0.154 0.025 0.207 -0.026 0.027 3644 0.197 0.334 0.604
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Gestational Age -0.050 0.041 3371 0.153 0.227 0.377 -0.069 0.039 3644 0.200 0.076 0.197
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Birth weight -0.061 0.037 3371 0.155 0.096 0.232 -0.061 0.037 3644 0.199 0.099 0.488
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Tobacco use -0.003 0.042 3371 0.152 0.948 0.957 -0.054 0.041 3644 0.196 0.185 0.485
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Alcohol use -0.022 0.030 3371 0.151 0.470 0.816 -0.004 0.030 3644 0.196 0.893 0.964
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Marijuana use 0.043 0.058 3371 0.152 0.462 0.911 -0.044 0.059 3644 0.196 0.451 0.884
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Pregnancy complications -0.019 0.026 3371 0.152 0.482 0.752 -0.005 0.026 3644 0.196 0.855 0.938
smri_vol_cdk_lobfrrh Cortical volume rh-lateralorbitofrontal Birth complications 0.021 0.029 3371 0.151 0.481 0.913 -0.029 0.028 3644 0.197 0.293 0.708
smri_vol_cdk_lingualrh Cortical volume rh-lingual Unplanned pregnancy -0.008 0.035 3371 0.200 0.811 0.959 0.012 0.035 3644 0.195 0.721 0.908
smri_vol_cdk_lingualrh Cortical volume rh-lingual C-Section 0.012 0.033 3371 0.200 0.715 0.869 -0.060 0.032 3644 0.195 0.058 0.303
smri_vol_cdk_lingualrh Cortical volume rh-lingual Gestational Age -0.109 0.049 3371 0.202 0.025 0.106 -0.025 0.046 3644 0.195 0.591 0.796
smri_vol_cdk_lingualrh Cortical volume rh-lingual Birth weight 0.012 0.043 3371 0.199 0.780 0.860 -0.077 0.043 3644 0.197 0.071 0.457
smri_vol_cdk_lingualrh Cortical volume rh-lingual Tobacco use -0.010 0.050 3371 0.200 0.838 0.920 -0.032 0.048 3644 0.195 0.501 0.672
smri_vol_cdk_lingualrh Cortical volume rh-lingual Alcohol use -0.028 0.036 3371 0.199 0.429 0.816 0.027 0.035 3644 0.195 0.438 0.877
smri_vol_cdk_lingualrh Cortical volume rh-lingual Marijuana use 0.022 0.068 3371 0.200 0.744 0.951 0.053 0.068 3644 0.195 0.440 0.884
smri_vol_cdk_lingualrh Cortical volume rh-lingual Pregnancy complications -0.013 0.031 3371 0.200 0.689 0.901 0.013 0.031 3644 0.195 0.672 0.915
smri_vol_cdk_lingualrh Cortical volume rh-lingual Birth complications -0.011 0.034 3371 0.200 0.738 0.913 -0.065 0.032 3644 0.195 0.042 0.259
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Unplanned pregnancy 0.023 0.034 3371 0.169 0.501 0.959 0.032 0.034 3644 0.179 0.333 0.905
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal C-Section 0.064 0.032 3371 0.171 0.046 0.240 0.082 0.030 3644 0.181 0.007 0.117
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Gestational Age 0.060 0.047 3371 0.171 0.196 0.359 0.022 0.044 3644 0.178 0.609 0.796
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Birth weight 0.048 0.042 3371 0.169 0.253 0.431 0.074 0.042 3644 0.178 0.076 0.457
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Tobacco use 0.024 0.048 3371 0.170 0.618 0.918 -0.013 0.046 3644 0.179 0.777 0.852
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Alcohol use 0.012 0.034 3371 0.170 0.735 0.861 0.016 0.033 3644 0.179 0.640 0.900
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Marijuana use 0.052 0.066 3371 0.170 0.429 0.911 -0.057 0.066 3644 0.179 0.395 0.865
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Pregnancy complications 0.043 0.030 3371 0.170 0.153 0.598 -0.014 0.030 3644 0.179 0.631 0.915
smri_vol_cdk_mobfrrh Cortical volume rh-medialorbitofrontal Birth complications 0.069 0.033 3371 0.170 0.037 0.561 0.036 0.031 3644 0.179 0.247 0.671
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Unplanned pregnancy -0.010 0.030 3371 0.415 0.750 0.959 -0.022 0.030 3644 0.408 0.464 0.908
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal C-Section -0.068 0.028 3371 0.418 0.016 0.156 -0.031 0.027 3644 0.408 0.262 0.531
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Gestational Age -0.212 0.041 3371 0.424 0.000 0.000 -0.189 0.039 3644 0.417 0.000 0.000
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Birth weight -0.182 0.037 3371 0.423 0.000 0.000 -0.106 0.037 3644 0.411 0.005 0.090
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Tobacco use -0.033 0.043 3371 0.415 0.436 0.846 -0.035 0.042 3644 0.408 0.397 0.614
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Alcohol use 0.089 0.030 3371 0.418 0.003 0.216 0.061 0.030 3644 0.409 0.043 0.732
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Marijuana use 0.123 0.058 3371 0.416 0.036 0.403 -0.004 0.060 3644 0.408 0.943 0.982
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Pregnancy complications -0.050 0.027 3371 0.417 0.060 0.485 -0.038 0.027 3644 0.409 0.155 0.759
smri_vol_cdk_mdtmrh Cortical volume rh-middletemporal Birth complications -0.065 0.029 3371 0.417 0.026 0.561 -0.047 0.028 3644 0.409 0.096 0.332
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Unplanned pregnancy -0.040 0.036 3371 0.208 0.273 0.959 0.046 0.036 3644 0.185 0.203 0.905
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal C-Section -0.032 0.034 3371 0.209 0.345 0.658 0.028 0.032 3644 0.185 0.384 0.620
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Gestational Age -0.096 0.049 3371 0.210 0.050 0.134 0.013 0.045 3644 0.184 0.779 0.840
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Birth weight 0.069 0.044 3371 0.207 0.120 0.282 -0.001 0.044 3644 0.184 0.974 0.989
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Tobacco use -0.095 0.051 3371 0.209 0.062 0.606 -0.060 0.049 3644 0.185 0.219 0.495
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Alcohol use 0.035 0.036 3371 0.209 0.339 0.717 0.003 0.035 3644 0.184 0.936 0.964
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Marijuana use 0.029 0.070 3371 0.208 0.678 0.951 -0.018 0.071 3644 0.184 0.797 0.958
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Pregnancy complications 0.059 0.032 3371 0.209 0.065 0.485 0.044 0.031 3644 0.185 0.164 0.759
smri_vol_cdk_parahpalrh Cortical volume rh-parahippocampal Birth complications -0.032 0.035 3371 0.209 0.354 0.913 -0.007 0.033 3644 0.184 0.841 0.985
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Unplanned pregnancy -0.012 0.037 3371 0.155 0.746 0.959 0.061 0.036 3644 0.167 0.087 0.905
smri_vol_cdk_paracnrh Cortical volume rh-paracentral C-Section -0.019 0.034 3371 0.155 0.579 0.757 -0.031 0.032 3644 0.167 0.336 0.604
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Gestational Age -0.027 0.050 3371 0.155 0.592 0.709 -0.063 0.046 3644 0.168 0.169 0.325
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Birth weight 0.060 0.045 3371 0.154 0.185 0.369 -0.021 0.045 3644 0.167 0.631 0.766
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Tobacco use -0.011 0.052 3371 0.155 0.830 0.920 -0.095 0.049 3644 0.167 0.053 0.302
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Alcohol use -0.020 0.037 3371 0.155 0.592 0.825 -0.091 0.036 3644 0.167 0.011 0.384
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Marijuana use 0.067 0.072 3371 0.155 0.348 0.911 0.043 0.071 3644 0.166 0.541 0.913
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Pregnancy complications 0.001 0.033 3371 0.155 0.985 0.999 -0.060 0.031 3644 0.167 0.056 0.555
smri_vol_cdk_paracnrh Cortical volume rh-paracentral Birth complications 0.073 0.036 3371 0.156 0.041 0.561 -0.068 0.033 3644 0.168 0.041 0.259
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Unplanned pregnancy -0.011 0.037 3371 0.150 0.757 0.959 -0.004 0.036 3644 0.140 0.918 0.959
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis C-Section -0.066 0.034 3371 0.151 0.054 0.264 -0.026 0.033 3644 0.140 0.436 0.641
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Gestational Age -0.030 0.050 3371 0.150 0.548 0.709 -0.013 0.047 3644 0.140 0.777 0.840
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Birth weight 0.008 0.045 3371 0.150 0.855 0.894 -0.083 0.045 3644 0.142 0.068 0.457
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Tobacco use 0.052 0.052 3371 0.150 0.317 0.805 0.044 0.050 3644 0.140 0.384 0.614
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Alcohol use -0.040 0.037 3371 0.149 0.279 0.680 -0.004 0.036 3644 0.140 0.908 0.964
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Marijuana use 0.034 0.071 3371 0.150 0.634 0.951 0.129 0.072 3644 0.141 0.073 0.601
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Pregnancy complications -0.008 0.033 3371 0.150 0.804 0.943 -0.019 0.032 3644 0.140 0.550 0.858
smri_vol_cdk_parsopcrh Cortical volume rh-parsopercularis Birth complications 0.008 0.036 3371 0.150 0.832 0.913 0.016 0.034 3644 0.140 0.643 0.923
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Unplanned pregnancy 0.037 0.037 3371 0.190 0.315 0.959 -0.022 0.035 3644 0.201 0.529 0.908
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis C-Section 0.026 0.034 3371 0.190 0.444 0.701 0.046 0.032 3644 0.201 0.153 0.517
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Gestational Age -0.071 0.049 3371 0.190 0.151 0.302 -0.185 0.045 3644 0.208 0.000 0.001
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Birth weight 0.043 0.045 3371 0.190 0.343 0.518 -0.051 0.044 3644 0.202 0.244 0.542
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Tobacco use 0.017 0.052 3371 0.190 0.741 0.920 -0.042 0.049 3644 0.201 0.388 0.614
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Alcohol use 0.035 0.037 3371 0.190 0.339 0.717 0.009 0.035 3644 0.201 0.799 0.964
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Marijuana use -0.100 0.071 3371 0.190 0.158 0.718 -0.051 0.070 3644 0.201 0.462 0.884
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Pregnancy complications 0.042 0.032 3371 0.190 0.192 0.598 0.025 0.031 3644 0.201 0.420 0.858
smri_vol_cdk_parsobisrh Cortical volume rh-parsorbitalis Birth complications 0.007 0.036 3371 0.190 0.836 0.913 -0.039 0.033 3644 0.202 0.233 0.659
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Unplanned pregnancy 0.020 0.039 3371 0.094 0.610 0.959 0.045 0.038 3644 0.091 0.240 0.905
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis C-Section 0.000 0.036 3371 0.094 0.991 0.998 -0.061 0.034 3644 0.092 0.077 0.373
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Gestational Age -0.081 0.052 3371 0.095 0.119 0.269 -0.105 0.049 3644 0.093 0.032 0.104
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Birth weight -0.086 0.048 3371 0.096 0.070 0.200 -0.140 0.047 3644 0.094 0.003 0.090
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Tobacco use 0.018 0.055 3371 0.094 0.744 0.920 0.107 0.053 3644 0.092 0.041 0.302
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Alcohol use -0.024 0.039 3371 0.094 0.536 0.825 -0.004 0.038 3644 0.091 0.915 0.964
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Marijuana use 0.023 0.075 3371 0.094 0.759 0.951 0.073 0.075 3644 0.091 0.331 0.821
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Pregnancy complications -0.014 0.034 3371 0.094 0.683 0.901 -0.071 0.034 3644 0.092 0.036 0.555
smri_vol_cdk_parstgrisrh Cortical volume rh-parstriangularis Birth complications -0.013 0.038 3371 0.094 0.739 0.913 -0.002 0.035 3644 0.091 0.955 0.993
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Unplanned pregnancy 0.019 0.037 3371 0.193 0.598 0.959 0.002 0.036 3644 0.186 0.946 0.960
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine C-Section 0.011 0.034 3371 0.193 0.737 0.870 -0.046 0.033 3644 0.186 0.153 0.517
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Gestational Age -0.062 0.051 3371 0.194 0.222 0.377 0.027 0.047 3644 0.186 0.566 0.786
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Birth weight 0.080 0.044 3371 0.194 0.069 0.200 -0.046 0.044 3644 0.186 0.298 0.559
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Tobacco use -0.020 0.052 3371 0.193 0.697 0.920 0.033 0.049 3644 0.186 0.504 0.672
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Alcohol use -0.072 0.037 3371 0.194 0.050 0.463 -0.018 0.036 3644 0.186 0.608 0.900
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Marijuana use 0.012 0.070 3371 0.193 0.868 0.978 0.110 0.071 3644 0.186 0.121 0.604
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Pregnancy complications -0.020 0.032 3371 0.193 0.539 0.797 -0.007 0.032 3644 0.186 0.837 0.936
smri_vol_cdk_periccrh Cortical volume rh-pericalcarine Birth complications -0.059 0.035 3371 0.194 0.091 0.913 -0.056 0.033 3644 0.186 0.091 0.332
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Unplanned pregnancy -0.008 0.034 3371 0.299 0.815 0.959 0.007 0.033 3644 0.290 0.830 0.959
smri_vol_cdk_postcnrh Cortical volume rh-postcentral C-Section -0.028 0.032 3371 0.300 0.367 0.658 0.002 0.030 3644 0.290 0.941 0.955
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Gestational Age -0.130 0.046 3371 0.301 0.005 0.033 -0.126 0.043 3644 0.294 0.004 0.025
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Birth weight -0.094 0.041 3371 0.302 0.024 0.134 -0.046 0.041 3644 0.291 0.261 0.542
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Tobacco use -0.065 0.048 3371 0.300 0.171 0.667 -0.087 0.046 3644 0.290 0.058 0.302
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Alcohol use 0.013 0.034 3371 0.299 0.704 0.840 -0.054 0.033 3644 0.290 0.103 0.781
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Marijuana use -0.006 0.065 3371 0.299 0.928 0.978 -0.067 0.066 3644 0.290 0.309 0.821
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Pregnancy complications -0.059 0.030 3371 0.300 0.047 0.485 -0.020 0.029 3644 0.290 0.496 0.858
smri_vol_cdk_postcnrh Cortical volume rh-postcentral Birth complications 0.025 0.033 3371 0.299 0.436 0.913 -0.081 0.031 3644 0.292 0.008 0.188
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Unplanned pregnancy 0.044 0.036 3371 0.180 0.215 0.959 0.038 0.035 3644 0.185 0.285 0.905
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate C-Section -0.019 0.033 3371 0.180 0.571 0.757 -0.038 0.032 3644 0.185 0.234 0.531
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Gestational Age -0.099 0.049 3371 0.182 0.043 0.134 -0.035 0.046 3644 0.186 0.438 0.633
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Birth weight -0.096 0.044 3371 0.183 0.028 0.135 -0.020 0.044 3644 0.185 0.649 0.774
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Tobacco use -0.024 0.050 3371 0.180 0.637 0.918 -0.100 0.048 3644 0.185 0.038 0.302
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Alcohol use 0.063 0.036 3371 0.182 0.075 0.467 -0.055 0.035 3644 0.185 0.118 0.781
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Marijuana use 0.063 0.069 3371 0.180 0.360 0.911 0.002 0.070 3644 0.184 0.982 0.982
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Pregnancy complications -0.039 0.031 3371 0.181 0.211 0.598 0.003 0.031 3644 0.184 0.931 0.973
smri_vol_cdk_ptcaterh Cortical volume rh-posteriorcingulate Birth complications -0.027 0.035 3371 0.180 0.430 0.913 -0.020 0.033 3644 0.185 0.544 0.847
smri_vol_cdk_precnrh Cortical volume rh-precentral Unplanned pregnancy -0.045 0.032 3371 0.324 0.169 0.959 0.020 0.031 3644 0.333 0.530 0.908
smri_vol_cdk_precnrh Cortical volume rh-precentral C-Section 0.015 0.030 3371 0.323 0.621 0.797 0.022 0.029 3644 0.333 0.452 0.641
smri_vol_cdk_precnrh Cortical volume rh-precentral Gestational Age -0.070 0.044 3371 0.325 0.112 0.262 -0.064 0.041 3644 0.334 0.124 0.263
smri_vol_cdk_precnrh Cortical volume rh-precentral Birth weight 0.054 0.040 3371 0.323 0.180 0.369 -0.008 0.039 3644 0.333 0.833 0.885
smri_vol_cdk_precnrh Cortical volume rh-precentral Tobacco use -0.111 0.046 3371 0.325 0.015 0.510 -0.073 0.043 3644 0.333 0.094 0.333
smri_vol_cdk_precnrh Cortical volume rh-precentral Alcohol use -0.014 0.032 3371 0.323 0.677 0.833 -0.026 0.031 3644 0.332 0.405 0.877
smri_vol_cdk_precnrh Cortical volume rh-precentral Marijuana use -0.052 0.063 3371 0.324 0.409 0.911 -0.070 0.062 3644 0.333 0.257 0.760
smri_vol_cdk_precnrh Cortical volume rh-precentral Pregnancy complications 0.002 0.029 3371 0.323 0.946 0.989 -0.054 0.028 3644 0.333 0.052 0.555
smri_vol_cdk_precnrh Cortical volume rh-precentral Birth complications -0.019 0.032 3371 0.324 0.558 0.913 -0.030 0.029 3644 0.333 0.297 0.708
smri_vol_cdk_pcrh Cortical volume rh-precuneus Unplanned pregnancy 0.016 0.031 3371 0.340 0.610 0.959 0.013 0.030 3644 0.353 0.675 0.908
smri_vol_cdk_pcrh Cortical volume rh-precuneus C-Section 0.022 0.029 3371 0.340 0.446 0.701 -0.021 0.028 3644 0.353 0.449 0.641
smri_vol_cdk_pcrh Cortical volume rh-precuneus Gestational Age -0.012 0.042 3371 0.340 0.774 0.835 -0.048 0.040 3644 0.354 0.227 0.395
smri_vol_cdk_pcrh Cortical volume rh-precuneus Birth weight -0.046 0.038 3371 0.342 0.219 0.411 0.014 0.038 3644 0.353 0.706 0.814
smri_vol_cdk_pcrh Cortical volume rh-precuneus Tobacco use -0.063 0.044 3371 0.341 0.148 0.628 0.007 0.042 3644 0.353 0.875 0.898
smri_vol_cdk_pcrh Cortical volume rh-precuneus Alcohol use 0.051 0.031 3371 0.341 0.102 0.571 0.028 0.030 3644 0.354 0.362 0.841
smri_vol_cdk_pcrh Cortical volume rh-precuneus Marijuana use 0.047 0.059 3371 0.340 0.431 0.911 -0.042 0.060 3644 0.353 0.490 0.891
smri_vol_cdk_pcrh Cortical volume rh-precuneus Pregnancy complications -0.040 0.027 3371 0.341 0.143 0.598 -0.026 0.027 3644 0.353 0.338 0.858
smri_vol_cdk_pcrh Cortical volume rh-precuneus Birth complications -0.010 0.030 3371 0.340 0.737 0.913 -0.012 0.028 3644 0.353 0.663 0.923
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Unplanned pregnancy -0.043 0.037 3371 0.133 0.237 0.959 0.046 0.036 3644 0.144 0.204 0.905
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate C-Section -0.023 0.034 3371 0.133 0.510 0.751 -0.049 0.033 3644 0.144 0.136 0.515
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Gestational Age -0.024 0.049 3371 0.133 0.632 0.716 -0.043 0.047 3644 0.145 0.357 0.528
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Birth weight -0.101 0.045 3371 0.136 0.026 0.135 -0.015 0.045 3644 0.144 0.731 0.816
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Tobacco use -0.035 0.052 3371 0.133 0.503 0.900 -0.033 0.050 3644 0.143 0.506 0.672
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Alcohol use 0.027 0.037 3371 0.134 0.456 0.816 -0.053 0.036 3644 0.143 0.139 0.781
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Marijuana use 0.038 0.071 3371 0.133 0.596 0.951 -0.018 0.071 3644 0.143 0.797 0.958
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Pregnancy complications -0.025 0.032 3371 0.133 0.436 0.752 -0.013 0.032 3644 0.144 0.681 0.915
smri_vol_cdk_rracaterh Cortical volume rh-rostralanteriorcingulate Birth complications -0.035 0.036 3371 0.133 0.332 0.913 -0.035 0.034 3644 0.144 0.302 0.708
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Unplanned pregnancy 0.013 0.033 3371 0.293 0.682 0.959 0.008 0.032 3644 0.293 0.802 0.957
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal C-Section 0.046 0.031 3371 0.293 0.136 0.441 -0.010 0.029 3644 0.293 0.739 0.854
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Gestational Age -0.050 0.045 3371 0.295 0.265 0.419 -0.069 0.041 3644 0.295 0.098 0.230
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Birth weight 0.117 0.040 3371 0.292 0.004 0.049 0.044 0.040 3644 0.292 0.273 0.542
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Tobacco use -0.050 0.046 3371 0.294 0.283 0.805 -0.077 0.044 3644 0.293 0.077 0.333
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Alcohol use -0.020 0.033 3371 0.293 0.538 0.825 0.016 0.032 3644 0.293 0.611 0.900
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Marijuana use 0.048 0.063 3371 0.293 0.451 0.911 -0.115 0.063 3644 0.293 0.069 0.601
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Pregnancy complications 0.037 0.029 3371 0.293 0.202 0.598 0.000 0.028 3644 0.293 0.999 0.999
smri_vol_cdk_rrmdfrrh Cortical volume rh-rostralmiddlefrontal Birth complications -0.027 0.032 3371 0.294 0.403 0.913 -0.028 0.030 3644 0.293 0.348 0.763
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Unplanned pregnancy 0.046 0.030 3371 0.317 0.121 0.959 -0.001 0.029 3644 0.352 0.975 0.975
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal C-Section 0.002 0.028 3371 0.317 0.932 0.994 -0.016 0.026 3644 0.353 0.535 0.700
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Gestational Age -0.075 0.041 3371 0.319 0.068 0.164 -0.047 0.038 3644 0.354 0.213 0.382
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Birth weight 0.052 0.037 3371 0.316 0.158 0.337 0.020 0.036 3644 0.352 0.581 0.766
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Tobacco use -0.030 0.042 3371 0.317 0.472 0.892 -0.029 0.039 3644 0.352 0.467 0.672
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Alcohol use 0.002 0.030 3371 0.317 0.953 0.981 0.013 0.029 3644 0.353 0.649 0.900
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Marijuana use 0.079 0.058 3371 0.317 0.169 0.718 0.034 0.057 3644 0.353 0.549 0.913
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Pregnancy complications -0.029 0.026 3371 0.318 0.275 0.644 -0.006 0.025 3644 0.352 0.824 0.936
smri_vol_cdk_sufrrh Cortical volume rh-superiorfrontal Birth complications -0.009 0.029 3371 0.317 0.744 0.913 -0.045 0.027 3644 0.353 0.093 0.332
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Unplanned pregnancy 0.017 0.033 3371 0.312 0.612 0.959 0.029 0.033 3644 0.301 0.376 0.908
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal C-Section 0.047 0.031 3371 0.312 0.123 0.429 -0.033 0.030 3644 0.301 0.262 0.531
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Gestational Age -0.038 0.045 3371 0.312 0.395 0.549 -0.076 0.043 3644 0.302 0.078 0.197
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Birth weight 0.031 0.040 3371 0.311 0.448 0.597 0.032 0.041 3644 0.300 0.439 0.619
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Tobacco use -0.006 0.047 3371 0.312 0.903 0.930 0.056 0.045 3644 0.301 0.212 0.495
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Alcohol use -0.061 0.033 3371 0.312 0.063 0.463 0.031 0.033 3644 0.301 0.352 0.841
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Marijuana use 0.097 0.064 3371 0.312 0.128 0.668 0.062 0.065 3644 0.301 0.338 0.821
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Pregnancy complications -0.025 0.029 3371 0.312 0.385 0.752 -0.043 0.029 3644 0.301 0.134 0.759
smri_vol_cdk_suplrh Cortical volume rh-superiorparietal Birth complications -0.004 0.032 3371 0.312 0.900 0.928 -0.032 0.030 3644 0.301 0.287 0.708
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Unplanned pregnancy 0.059 0.031 3371 0.296 0.061 0.959 0.038 0.030 3644 0.333 0.204 0.905
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal C-Section -0.022 0.029 3371 0.296 0.454 0.701 0.001 0.028 3644 0.333 0.978 0.978
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Gestational Age -0.021 0.043 3371 0.296 0.630 0.716 -0.017 0.040 3644 0.333 0.669 0.810
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Birth weight 0.068 0.038 3371 0.293 0.074 0.201 0.041 0.038 3644 0.332 0.276 0.542
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Tobacco use 0.010 0.044 3371 0.296 0.822 0.920 -0.124 0.042 3644 0.333 0.003 0.068
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Alcohol use 0.004 0.031 3371 0.296 0.904 0.962 -0.020 0.030 3644 0.332 0.520 0.900
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Marijuana use 0.066 0.060 3371 0.296 0.271 0.911 -0.029 0.060 3644 0.333 0.627 0.927
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Pregnancy complications -0.015 0.028 3371 0.296 0.592 0.822 0.019 0.027 3644 0.332 0.473 0.858
smri_vol_cdk_sutmrh Cortical volume rh-superiortemporal Birth complications -0.019 0.030 3371 0.296 0.533 0.913 0.012 0.028 3644 0.332 0.665 0.923
smri_vol_cdk_smrh Cortical volume rh-supramarginal Unplanned pregnancy 0.000 0.035 3371 0.284 0.999 0.999 0.019 0.033 3644 0.307 0.571 0.908
smri_vol_cdk_smrh Cortical volume rh-supramarginal C-Section -0.041 0.032 3371 0.284 0.206 0.512 -0.023 0.030 3644 0.308 0.435 0.641
smri_vol_cdk_smrh Cortical volume rh-supramarginal Gestational Age -0.107 0.047 3371 0.285 0.021 0.095 -0.171 0.042 3644 0.313 0.000 0.001
smri_vol_cdk_smrh Cortical volume rh-supramarginal Birth weight -0.036 0.042 3371 0.284 0.398 0.552 -0.048 0.041 3644 0.308 0.245 0.542
smri_vol_cdk_smrh Cortical volume rh-supramarginal Tobacco use -0.078 0.049 3371 0.284 0.111 0.628 -0.007 0.045 3644 0.307 0.885 0.898
smri_vol_cdk_smrh Cortical volume rh-supramarginal Alcohol use 0.041 0.035 3371 0.284 0.232 0.644 0.052 0.033 3644 0.308 0.116 0.781
smri_vol_cdk_smrh Cortical volume rh-supramarginal Marijuana use 0.006 0.067 3371 0.284 0.929 0.978 0.031 0.065 3644 0.307 0.641 0.927
smri_vol_cdk_smrh Cortical volume rh-supramarginal Pregnancy complications -0.038 0.030 3371 0.284 0.215 0.598 -0.013 0.029 3644 0.307 0.659 0.915
smri_vol_cdk_smrh Cortical volume rh-supramarginal Birth complications -0.008 0.034 3371 0.284 0.815 0.913 -0.020 0.031 3644 0.308 0.516 0.847
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Unplanned pregnancy -0.008 0.038 3371 0.108 0.831 0.959 -0.003 0.037 3644 0.124 0.931 0.959
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole C-Section 0.044 0.035 3371 0.109 0.206 0.512 0.116 0.033 3644 0.129 0.000 0.032
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Gestational Age -0.026 0.051 3371 0.107 0.610 0.715 -0.017 0.047 3644 0.124 0.712 0.810
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Birth weight 0.146 0.046 3371 0.111 0.002 0.028 0.043 0.046 3644 0.124 0.341 0.594
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Tobacco use 0.051 0.053 3371 0.108 0.336 0.805 -0.057 0.050 3644 0.124 0.258 0.517
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Alcohol use -0.019 0.038 3371 0.108 0.620 0.827 0.053 0.036 3644 0.125 0.147 0.781
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Marijuana use -0.020 0.073 3371 0.108 0.783 0.951 0.011 0.072 3644 0.124 0.878 0.958
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Pregnancy complications 0.009 0.033 3371 0.108 0.779 0.929 0.010 0.032 3644 0.124 0.760 0.936
smri_vol_cdk_frpolerh Cortical volume rh-frontalpole Birth complications -0.038 0.037 3371 0.108 0.302 0.913 0.071 0.034 3644 0.125 0.036 0.259
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Unplanned pregnancy 0.031 0.039 3371 0.091 0.427 0.959 0.052 0.039 3644 0.072 0.176 0.905
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole C-Section 0.029 0.036 3371 0.091 0.418 0.701 0.097 0.035 3644 0.074 0.005 0.116
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Gestational Age 0.120 0.052 3371 0.093 0.021 0.095 -0.018 0.049 3644 0.072 0.714 0.810
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Birth weight 0.086 0.048 3371 0.091 0.071 0.200 0.154 0.047 3644 0.075 0.001 0.080
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Tobacco use 0.044 0.055 3371 0.091 0.426 0.846 0.098 0.053 3644 0.073 0.063 0.307
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Alcohol use 0.027 0.039 3371 0.090 0.484 0.816 0.052 0.038 3644 0.072 0.172 0.781
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Marijuana use 0.174 0.075 3371 0.092 0.021 0.329 0.042 0.076 3644 0.072 0.586 0.914
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Pregnancy complications 0.059 0.034 3371 0.091 0.087 0.485 0.043 0.034 3644 0.073 0.203 0.759
smri_vol_cdk_tmpolerh Cortical volume rh-temporalpole Birth complications -0.018 0.038 3371 0.090 0.635 0.913 0.044 0.036 3644 0.072 0.213 0.629
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Unplanned pregnancy 0.017 0.037 3371 0.104 0.639 0.959 -0.016 0.036 3644 0.108 0.648 0.908
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal C-Section -0.085 0.034 3371 0.106 0.013 0.153 -0.070 0.033 3644 0.110 0.032 0.221
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Gestational Age -0.139 0.051 3371 0.107 0.006 0.038 -0.103 0.047 3644 0.113 0.027 0.092
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Birth weight 0.025 0.045 3371 0.103 0.572 0.707 -0.045 0.045 3644 0.110 0.315 0.564
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Tobacco use 0.027 0.052 3371 0.104 0.607 0.918 -0.056 0.049 3644 0.109 0.255 0.517
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Alcohol use 0.058 0.037 3371 0.106 0.119 0.576 -0.019 0.036 3644 0.108 0.591 0.900
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Marijuana use 0.006 0.071 3371 0.104 0.930 0.978 0.009 0.071 3644 0.109 0.897 0.958
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Pregnancy complications -0.040 0.033 3371 0.105 0.220 0.598 -0.038 0.032 3644 0.109 0.234 0.759
smri_vol_cdk_trvtmrh Cortical volume rh-transversetemporal Birth complications -0.009 0.036 3371 0.104 0.803 0.913 0.020 0.033 3644 0.108 0.548 0.847
smri_vol_cdk_insularh Cortical volume rh-insula Unplanned pregnancy 0.033 0.032 3371 0.340 0.301 0.959 0.037 0.031 3644 0.366 0.229 0.905
smri_vol_cdk_insularh Cortical volume rh-insula C-Section -0.051 0.030 3371 0.342 0.087 0.368 -0.070 0.028 3644 0.367 0.012 0.119
smri_vol_cdk_insularh Cortical volume rh-insula Gestational Age -0.086 0.044 3371 0.343 0.050 0.134 -0.071 0.040 3644 0.368 0.078 0.197
smri_vol_cdk_insularh Cortical volume rh-insula Birth weight -0.102 0.039 3371 0.343 0.009 0.068 -0.103 0.038 3644 0.368 0.007 0.090
smri_vol_cdk_insularh Cortical volume rh-insula Tobacco use -0.008 0.045 3371 0.340 0.867 0.928 0.097 0.042 3644 0.367 0.022 0.252
smri_vol_cdk_insularh Cortical volume rh-insula Alcohol use -0.037 0.032 3371 0.339 0.248 0.649 0.003 0.031 3644 0.365 0.917 0.964
smri_vol_cdk_insularh Cortical volume rh-insula Marijuana use -0.036 0.061 3371 0.340 0.558 0.934 0.101 0.060 3644 0.366 0.095 0.601
smri_vol_cdk_insularh Cortical volume rh-insula Pregnancy complications -0.046 0.028 3371 0.341 0.100 0.485 -0.018 0.027 3644 0.366 0.496 0.858
smri_vol_cdk_insularh Cortical volume rh-insula Birth complications -0.011 0.031 3371 0.340 0.724 0.913 -0.008 0.028 3644 0.365 0.778 0.967
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Unplanned pregnancy 0.027 0.039 3371 0.078 0.492 0.695 -0.011 0.038 3644 0.054 0.768 0.897
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle C-Section 0.039 0.036 3371 0.078 0.281 0.761 0.050 0.035 3644 0.055 0.153 0.509
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Gestational Age 0.092 0.052 3371 0.079 0.078 0.294 0.096 0.050 3644 0.055 0.057 0.162
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Birth weight -0.030 0.048 3371 0.078 0.522 0.726 0.059 0.047 3644 0.054 0.211 0.351
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Tobacco use -0.024 0.055 3371 0.078 0.663 0.982 -0.055 0.053 3644 0.054 0.299 0.498
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Alcohol use 0.031 0.039 3371 0.078 0.425 0.901 0.027 0.038 3644 0.054 0.486 0.884
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Marijuana use 0.079 0.075 3371 0.078 0.292 0.819 -0.115 0.076 3644 0.055 0.127 0.608
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Pregnancy complications 0.039 0.034 3371 0.078 0.251 0.942 -0.011 0.034 3644 0.054 0.752 0.912
smri_vol_scs_ltventriclelh Subcortical volume left-lateral-ventricle Birth complications 0.056 0.038 3371 0.078 0.136 0.272 0.049 0.035 3644 0.054 0.168 0.247
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Unplanned pregnancy -0.037 0.033 3371 0.340 0.261 0.695 -0.070 0.032 3644 0.337 0.029 0.585
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex C-Section -0.052 0.031 3371 0.341 0.092 0.458 0.006 0.029 3644 0.336 0.846 0.998
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Gestational Age -0.090 0.046 3371 0.341 0.050 0.251 -0.006 0.043 3644 0.336 0.894 0.930
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Birth weight -0.009 0.039 3371 0.340 0.821 0.865 0.036 0.039 3644 0.336 0.354 0.506
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Tobacco use -0.023 0.047 3371 0.340 0.622 0.982 0.073 0.045 3644 0.337 0.101 0.291
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Alcohol use -0.004 0.033 3371 0.340 0.904 0.949 -0.009 0.032 3644 0.336 0.772 0.998
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Marijuana use -0.038 0.063 3371 0.340 0.542 0.819 0.095 0.063 3644 0.337 0.134 0.608
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Pregnancy complications -0.025 0.029 3371 0.340 0.395 0.942 0.034 0.028 3644 0.337 0.237 0.912
smri_vol_scs_crbcortexlh Subcortical volume left-cerebellum-cortex Birth complications -0.078 0.031 3371 0.342 0.011 0.117 -0.040 0.029 3644 0.337 0.170 0.247
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Unplanned pregnancy -0.068 0.027 3371 0.569 0.012 0.233 -0.006 0.027 3644 0.560 0.834 0.897
smri_vol_scs_tplh Subcortical volume left-thalamus-proper C-Section -0.024 0.025 3371 0.568 0.338 0.761 -0.040 0.024 3644 0.560 0.095 0.426
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Gestational Age -0.030 0.036 3371 0.568 0.398 0.569 -0.011 0.035 3644 0.560 0.749 0.881
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Birth weight -0.064 0.033 3371 0.568 0.049 0.146 -0.052 0.032 3644 0.560 0.112 0.250
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Tobacco use 0.019 0.039 3371 0.568 0.629 0.982 -0.026 0.037 3644 0.560 0.479 0.735
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Alcohol use 0.004 0.027 3371 0.568 0.875 0.949 0.071 0.027 3644 0.561 0.008 0.163
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Marijuana use -0.017 0.052 3371 0.568 0.752 0.835 -0.029 0.053 3644 0.560 0.578 0.722
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Pregnancy complications -0.008 0.024 3371 0.568 0.734 0.942 -0.004 0.024 3644 0.560 0.852 0.912
smri_vol_scs_tplh Subcortical volume left-thalamus-proper Birth complications -0.009 0.026 3371 0.568 0.723 0.761 -0.062 0.024 3644 0.560 0.011 0.073
smri_vol_scs_caudatelh Subcortical volume left-caudate Unplanned pregnancy 0.033 0.035 3371 0.239 0.343 0.695 0.010 0.034 3644 0.245 0.760 0.897
smri_vol_scs_caudatelh Subcortical volume left-caudate C-Section 0.020 0.032 3371 0.239 0.528 0.846 0.006 0.031 3644 0.245 0.838 0.998
smri_vol_scs_caudatelh Subcortical volume left-caudate Gestational Age 0.043 0.048 3371 0.239 0.370 0.569 0.048 0.045 3644 0.245 0.289 0.454
smri_vol_scs_caudatelh Subcortical volume left-caudate Birth weight -0.120 0.041 3371 0.243 0.004 0.038 -0.069 0.042 3644 0.246 0.098 0.244
smri_vol_scs_caudatelh Subcortical volume left-caudate Tobacco use -0.059 0.049 3371 0.240 0.228 0.982 -0.080 0.047 3644 0.245 0.089 0.291
smri_vol_scs_caudatelh Subcortical volume left-caudate Alcohol use -0.037 0.035 3371 0.239 0.283 0.901 0.000 0.034 3644 0.245 0.998 0.998
smri_vol_scs_caudatelh Subcortical volume left-caudate Marijuana use -0.057 0.067 3371 0.240 0.393 0.819 -0.077 0.067 3644 0.245 0.249 0.608
smri_vol_scs_caudatelh Subcortical volume left-caudate Pregnancy complications 0.015 0.031 3371 0.239 0.619 0.942 -0.005 0.030 3644 0.245 0.874 0.912
smri_vol_scs_caudatelh Subcortical volume left-caudate Birth complications 0.003 0.033 3371 0.240 0.931 0.931 0.023 0.031 3644 0.245 0.469 0.521
smri_vol_scs_putamenlh Subcortical volume left-putamen Unplanned pregnancy 0.024 0.035 3371 0.268 0.492 0.695 -0.036 0.035 3644 0.251 0.303 0.780
smri_vol_scs_putamenlh Subcortical volume left-putamen C-Section -0.008 0.033 3371 0.268 0.814 0.904 0.029 0.031 3644 0.251 0.361 0.874
smri_vol_scs_putamenlh Subcortical volume left-putamen Gestational Age -0.021 0.048 3371 0.268 0.666 0.783 0.012 0.046 3644 0.251 0.793 0.881
smri_vol_scs_putamenlh Subcortical volume left-putamen Birth weight 0.043 0.042 3371 0.268 0.311 0.518 0.130 0.042 3644 0.255 0.002 0.041
smri_vol_scs_putamenlh Subcortical volume left-putamen Tobacco use 0.008 0.050 3371 0.268 0.871 0.982 0.014 0.048 3644 0.251 0.770 0.855
smri_vol_scs_putamenlh Subcortical volume left-putamen Alcohol use -0.061 0.035 3371 0.269 0.081 0.901 0.065 0.035 3644 0.252 0.063 0.313
smri_vol_scs_putamenlh Subcortical volume left-putamen Marijuana use 0.053 0.068 3371 0.268 0.429 0.819 0.062 0.068 3644 0.251 0.366 0.608
smri_vol_scs_putamenlh Subcortical volume left-putamen Pregnancy complications -0.045 0.031 3371 0.268 0.151 0.942 -0.023 0.031 3644 0.251 0.457 0.912
smri_vol_scs_putamenlh Subcortical volume left-putamen Birth complications -0.013 0.033 3371 0.268 0.689 0.761 -0.076 0.032 3644 0.251 0.016 0.081
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Unplanned pregnancy -0.063 0.037 3371 0.182 0.084 0.560 -0.019 0.037 3644 0.168 0.597 0.897
smri_vol_scs_pallidumlh Subcortical volume left-pallidum C-Section 0.027 0.034 3371 0.181 0.419 0.838 0.009 0.033 3644 0.168 0.793 0.998
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Gestational Age -0.029 0.049 3371 0.181 0.555 0.694 -0.105 0.047 3644 0.169 0.027 0.118
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Birth weight -0.038 0.045 3371 0.181 0.405 0.623 -0.060 0.045 3644 0.168 0.182 0.330
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Tobacco use 0.002 0.052 3371 0.181 0.976 0.982 -0.020 0.050 3644 0.168 0.698 0.821
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Alcohol use -0.007 0.037 3371 0.181 0.841 0.949 0.071 0.036 3644 0.169 0.050 0.313
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Marijuana use 0.002 0.071 3371 0.181 0.979 0.979 0.108 0.072 3644 0.168 0.136 0.608
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Pregnancy complications -0.007 0.032 3371 0.181 0.820 0.942 -0.039 0.032 3644 0.168 0.231 0.912
smri_vol_scs_pallidumlh Subcortical volume left-pallidum Birth complications -0.066 0.036 3371 0.182 0.064 0.214 0.019 0.034 3644 0.168 0.585 0.585
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Unplanned pregnancy 0.001 0.034 3371 0.318 0.983 0.983 0.028 0.033 3644 0.328 0.390 0.780
smri_vol_scs_hpuslh Subcortical volume left-hippocampus C-Section -0.013 0.031 3371 0.318 0.677 0.846 -0.005 0.030 3644 0.328 0.877 0.998
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Gestational Age -0.061 0.045 3371 0.318 0.180 0.359 -0.070 0.043 3644 0.328 0.102 0.255
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Birth weight 0.088 0.041 3371 0.318 0.034 0.136 0.056 0.040 3644 0.328 0.165 0.329
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Tobacco use -0.037 0.048 3371 0.318 0.442 0.982 -0.018 0.045 3644 0.328 0.696 0.821
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Alcohol use -0.002 0.034 3371 0.318 0.949 0.949 0.001 0.033 3644 0.328 0.974 0.998
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Marijuana use 0.096 0.066 3371 0.318 0.145 0.819 0.048 0.065 3644 0.328 0.458 0.654
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Pregnancy complications 0.030 0.030 3371 0.318 0.323 0.942 -0.029 0.029 3644 0.328 0.324 0.912
smri_vol_scs_hpuslh Subcortical volume left-hippocampus Birth complications 0.016 0.033 3371 0.318 0.629 0.761 -0.041 0.030 3644 0.328 0.173 0.247
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Unplanned pregnancy -0.011 0.033 3371 0.282 0.739 0.870 0.047 0.032 3644 0.293 0.139 0.697
smri_vol_scs_amygdalalh Subcortical volume left-amygdala C-Section -0.009 0.031 3371 0.282 0.766 0.901 0.002 0.029 3644 0.293 0.956 0.998
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Gestational Age -0.031 0.045 3371 0.281 0.494 0.658 -0.097 0.042 3644 0.292 0.021 0.118
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Birth weight 0.088 0.040 3371 0.284 0.030 0.136 0.093 0.040 3644 0.296 0.020 0.136
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Tobacco use 0.013 0.046 3371 0.282 0.786 0.982 -0.059 0.044 3644 0.294 0.185 0.411
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Alcohol use 0.031 0.033 3371 0.282 0.343 0.901 0.001 0.032 3644 0.293 0.980 0.998
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Marijuana use -0.034 0.063 3371 0.282 0.587 0.819 0.061 0.063 3644 0.293 0.335 0.608
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Pregnancy complications 0.010 0.029 3371 0.282 0.739 0.942 0.013 0.028 3644 0.293 0.643 0.912
smri_vol_scs_amygdalalh Subcortical volume left-amygdala Birth complications -0.038 0.032 3371 0.282 0.227 0.349 -0.044 0.030 3644 0.293 0.137 0.247
smri_vol_scs_aal Subcortical volume left-accumbens-area Unplanned pregnancy -0.023 0.034 3371 -0.001 0.505 0.695 0.030 0.033 3644 0.019 0.362 0.780
smri_vol_scs_aal Subcortical volume left-accumbens-area C-Section 0.014 0.032 3371 -0.002 0.652 0.846 0.023 0.030 3644 0.019 0.447 0.894
smri_vol_scs_aal Subcortical volume left-accumbens-area Gestational Age -0.074 0.046 3371 -0.002 0.108 0.294 -0.092 0.042 3644 0.022 0.030 0.118
smri_vol_scs_aal Subcortical volume left-accumbens-area Birth weight 0.018 0.042 3371 -0.003 0.668 0.756 -0.095 0.041 3644 0.022 0.019 0.136
smri_vol_scs_aal Subcortical volume left-accumbens-area Tobacco use -0.122 0.048 3371 0.001 0.011 0.122 -0.083 0.045 3644 0.019 0.063 0.291
smri_vol_scs_aal Subcortical volume left-accumbens-area Alcohol use -0.003 0.034 3371 -0.002 0.934 0.949 0.004 0.033 3644 0.019 0.901 0.998
smri_vol_scs_aal Subcortical volume left-accumbens-area Marijuana use -0.083 0.065 3371 -0.001 0.202 0.819 -0.009 0.065 3644 0.019 0.886 0.933
smri_vol_scs_aal Subcortical volume left-accumbens-area Pregnancy complications 0.008 0.030 3371 -0.002 0.790 0.942 -0.046 0.029 3644 0.020 0.111 0.912
smri_vol_scs_aal Subcortical volume left-accumbens-area Birth complications -0.062 0.033 3371 -0.001 0.061 0.214 -0.105 0.030 3644 0.022 0.001 0.011
smri_vol_scs_vedclh Subcortical volume left-ventraldc Unplanned pregnancy -0.022 0.030 3371 0.461 0.457 0.695 0.014 0.028 3644 0.488 0.624 0.897
smri_vol_scs_vedclh Subcortical volume left-ventraldc C-Section 0.059 0.028 3371 0.461 0.033 0.458 0.046 0.026 3644 0.488 0.073 0.426
smri_vol_scs_vedclh Subcortical volume left-ventraldc Gestational Age -0.063 0.041 3371 0.462 0.124 0.294 -0.026 0.038 3644 0.488 0.498 0.663
smri_vol_scs_vedclh Subcortical volume left-ventraldc Birth weight 0.049 0.036 3371 0.460 0.177 0.354 0.004 0.035 3644 0.488 0.898 0.898
smri_vol_scs_vedclh Subcortical volume left-ventraldc Tobacco use -0.001 0.042 3371 0.461 0.982 0.982 -0.044 0.039 3644 0.488 0.268 0.488
smri_vol_scs_vedclh Subcortical volume left-ventraldc Alcohol use 0.013 0.030 3371 0.461 0.673 0.901 0.011 0.029 3644 0.488 0.708 0.998
smri_vol_scs_vedclh Subcortical volume left-ventraldc Marijuana use -0.027 0.057 3371 0.461 0.641 0.819 -0.015 0.056 3644 0.488 0.791 0.931
smri_vol_scs_vedclh Subcortical volume left-ventraldc Pregnancy complications 0.015 0.026 3371 0.460 0.580 0.942 0.027 0.025 3644 0.488 0.280 0.912
smri_vol_scs_vedclh Subcortical volume left-ventraldc Birth complications -0.068 0.029 3371 0.462 0.018 0.117 -0.058 0.026 3644 0.489 0.026 0.103
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Unplanned pregnancy 0.035 0.039 3371 0.069 0.375 0.695 -0.007 0.038 3644 0.056 0.852 0.897
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle C-Section 0.022 0.036 3371 0.070 0.550 0.846 0.030 0.035 3644 0.056 0.393 0.874
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Gestational Age 0.086 0.053 3371 0.071 0.102 0.294 0.112 0.050 3644 0.057 0.026 0.118
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Birth weight -0.020 0.048 3371 0.070 0.680 0.756 0.021 0.047 3644 0.056 0.652 0.815
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Tobacco use -0.031 0.055 3371 0.070 0.572 0.982 0.034 0.053 3644 0.056 0.514 0.735
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Alcohol use 0.022 0.039 3371 0.070 0.568 0.901 0.031 0.038 3644 0.056 0.413 0.826
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Marijuana use 0.074 0.075 3371 0.070 0.327 0.819 -0.076 0.076 3644 0.056 0.314 0.608
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Pregnancy complications 0.023 0.034 3371 0.070 0.499 0.942 0.037 0.034 3644 0.056 0.270 0.912
smri_vol_scs_ltventriclerh Subcortical volume right-lateral-ventricle Birth complications 0.057 0.038 3371 0.070 0.131 0.272 0.057 0.035 3644 0.056 0.108 0.247
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Unplanned pregnancy -0.029 0.033 3371 0.283 0.384 0.695 -0.058 0.032 3644 0.264 0.072 0.593
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex C-Section -0.057 0.031 3371 0.284 0.067 0.458 0.005 0.030 3644 0.263 0.876 0.998
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Gestational Age -0.095 0.046 3371 0.285 0.041 0.251 0.013 0.044 3644 0.263 0.765 0.881
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Birth weight 0.004 0.039 3371 0.283 0.909 0.909 0.025 0.039 3644 0.263 0.520 0.694
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Tobacco use 0.001 0.047 3371 0.283 0.975 0.982 0.055 0.045 3644 0.264 0.223 0.445
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Alcohol use 0.016 0.033 3371 0.283 0.637 0.901 -0.002 0.033 3644 0.263 0.953 0.998
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Marijuana use 0.030 0.064 3371 0.283 0.640 0.819 0.070 0.064 3644 0.264 0.275 0.608
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Pregnancy complications 0.001 0.029 3371 0.283 0.983 0.983 0.017 0.029 3644 0.263 0.561 0.912
smri_vol_scs_crbcortexrh Subcortical volume right-cerebellum-cortex Birth complications -0.075 0.031 3371 0.285 0.016 0.117 -0.037 0.029 3644 0.264 0.211 0.253
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Unplanned pregnancy -0.053 0.030 3371 0.458 0.076 0.560 0.007 0.029 3644 0.432 0.821 0.897
smri_vol_scs_tprh Subcortical volume right-thalamus-proper C-Section -0.051 0.028 3371 0.458 0.071 0.458 -0.054 0.027 3644 0.433 0.045 0.426
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Gestational Age -0.098 0.042 3371 0.459 0.018 0.183 -0.078 0.039 3644 0.435 0.046 0.155
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Birth weight -0.117 0.036 3371 0.460 0.001 0.023 -0.012 0.036 3644 0.432 0.734 0.864
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Tobacco use -0.018 0.043 3371 0.457 0.667 0.982 0.007 0.041 3644 0.432 0.872 0.909
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Alcohol use -0.013 0.030 3371 0.457 0.676 0.901 0.050 0.029 3644 0.433 0.087 0.349
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Marijuana use -0.024 0.058 3371 0.457 0.682 0.819 0.001 0.058 3644 0.432 0.986 0.986
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Pregnancy complications -0.012 0.027 3371 0.457 0.649 0.942 -0.009 0.026 3644 0.432 0.741 0.912
smri_vol_scs_tprh Subcortical volume right-thalamus-proper Birth complications -0.058 0.029 3371 0.458 0.041 0.205 -0.069 0.027 3644 0.434 0.011 0.073
smri_vol_scs_caudaterh Subcortical volume right-caudate Unplanned pregnancy 0.032 0.034 3371 0.197 0.348 0.695 0.018 0.034 3644 0.208 0.590 0.897
smri_vol_scs_caudaterh Subcortical volume right-caudate C-Section 0.022 0.032 3371 0.197 0.496 0.846 0.000 0.031 3644 0.208 0.989 0.998
smri_vol_scs_caudaterh Subcortical volume right-caudate Gestational Age 0.043 0.048 3371 0.197 0.365 0.569 0.062 0.045 3644 0.208 0.168 0.336
smri_vol_scs_caudaterh Subcortical volume right-caudate Birth weight -0.080 0.042 3371 0.200 0.055 0.146 -0.069 0.041 3644 0.210 0.094 0.244
smri_vol_scs_caudaterh Subcortical volume right-caudate Tobacco use -0.042 0.049 3371 0.197 0.386 0.982 -0.091 0.047 3644 0.208 0.052 0.291
smri_vol_scs_caudaterh Subcortical volume right-caudate Alcohol use -0.019 0.034 3371 0.197 0.577 0.901 -0.009 0.034 3644 0.208 0.784 0.998
smri_vol_scs_caudaterh Subcortical volume right-caudate Marijuana use -0.094 0.066 3371 0.198 0.156 0.819 -0.078 0.067 3644 0.208 0.244 0.608
smri_vol_scs_caudaterh Subcortical volume right-caudate Pregnancy complications 0.017 0.030 3371 0.197 0.577 0.942 -0.016 0.030 3644 0.208 0.602 0.912
smri_vol_scs_caudaterh Subcortical volume right-caudate Birth complications 0.012 0.033 3371 0.197 0.720 0.761 0.020 0.031 3644 0.208 0.512 0.539
smri_vol_scs_putamenrh Subcortical volume right-putamen Unplanned pregnancy 0.030 0.035 3371 0.223 0.403 0.695 -0.031 0.034 3644 0.246 0.356 0.780
smri_vol_scs_putamenrh Subcortical volume right-putamen C-Section -0.002 0.033 3371 0.223 0.945 0.991 0.021 0.031 3644 0.246 0.498 0.905
smri_vol_scs_putamenrh Subcortical volume right-putamen Gestational Age 0.008 0.049 3371 0.223 0.864 0.864 0.004 0.045 3644 0.246 0.930 0.930
smri_vol_scs_putamenrh Subcortical volume right-putamen Birth weight 0.025 0.042 3371 0.222 0.544 0.726 0.077 0.041 3644 0.247 0.061 0.243
smri_vol_scs_putamenrh Subcortical volume right-putamen Tobacco use 0.041 0.050 3371 0.223 0.411 0.982 0.005 0.047 3644 0.246 0.909 0.909
smri_vol_scs_putamenrh Subcortical volume right-putamen Alcohol use -0.035 0.036 3371 0.223 0.331 0.901 0.074 0.034 3644 0.248 0.029 0.288
smri_vol_scs_putamenrh Subcortical volume right-putamen Marijuana use 0.044 0.068 3371 0.223 0.520 0.819 0.128 0.067 3644 0.246 0.056 0.608
smri_vol_scs_putamenrh Subcortical volume right-putamen Pregnancy complications -0.042 0.031 3371 0.223 0.178 0.942 -0.014 0.030 3644 0.246 0.652 0.912
smri_vol_scs_putamenrh Subcortical volume right-putamen Birth complications -0.045 0.033 3371 0.223 0.176 0.320 -0.066 0.031 3644 0.246 0.034 0.113
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Unplanned pregnancy -0.046 0.035 3371 0.059 0.185 0.695 -0.033 0.034 3644 0.086 0.337 0.780
smri_vol_scs_pallidumrh Subcortical volume right-pallidum C-Section 0.017 0.032 3371 0.058 0.593 0.846 0.031 0.031 3644 0.086 0.319 0.874
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Gestational Age -0.132 0.048 3371 0.062 0.006 0.116 -0.054 0.045 3644 0.088 0.231 0.420
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Birth weight -0.068 0.042 3371 0.062 0.104 0.232 -0.081 0.042 3644 0.089 0.056 0.243
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Tobacco use -0.009 0.049 3371 0.058 0.854 0.982 -0.023 0.047 3644 0.086 0.631 0.821
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Alcohol use -0.015 0.035 3371 0.058 0.671 0.901 0.035 0.034 3644 0.087 0.307 0.767
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Marijuana use -0.026 0.066 3371 0.058 0.696 0.819 0.041 0.067 3644 0.086 0.541 0.721
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Pregnancy complications -0.033 0.030 3371 0.059 0.281 0.942 0.009 0.030 3644 0.086 0.775 0.912
smri_vol_scs_pallidumrh Subcortical volume right-pallidum Birth complications -0.055 0.033 3371 0.060 0.098 0.272 -0.043 0.032 3644 0.087 0.173 0.247
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Unplanned pregnancy -0.007 0.033 3371 0.359 0.833 0.926 -0.001 0.032 3644 0.358 0.966 0.966
smri_vol_scs_hpusrh Subcortical volume right-hippocampus C-Section -0.029 0.030 3371 0.360 0.342 0.761 0.000 0.029 3644 0.358 0.998 0.998
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Gestational Age -0.066 0.044 3371 0.360 0.132 0.294 -0.094 0.041 3644 0.359 0.023 0.118
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Birth weight 0.042 0.040 3371 0.360 0.285 0.518 0.042 0.039 3644 0.359 0.289 0.445
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Tobacco use -0.017 0.047 3371 0.359 0.722 0.982 -0.073 0.044 3644 0.359 0.102 0.291
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Alcohol use 0.038 0.033 3371 0.360 0.248 0.901 0.029 0.032 3644 0.358 0.372 0.826
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Marijuana use 0.068 0.064 3371 0.360 0.285 0.819 0.057 0.064 3644 0.358 0.366 0.608
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Pregnancy complications 0.017 0.029 3371 0.359 0.548 0.942 -0.030 0.028 3644 0.358 0.291 0.912
smri_vol_scs_hpusrh Subcortical volume right-hippocampus Birth complications -0.033 0.032 3371 0.360 0.291 0.416 -0.041 0.030 3644 0.359 0.164 0.247
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Unplanned pregnancy 0.018 0.033 3371 0.220 0.578 0.723 0.055 0.032 3644 0.256 0.089 0.593
smri_vol_scs_amygdalarh Subcortical volume right-amygdala C-Section 0.000 0.031 3371 0.220 0.991 0.991 -0.015 0.029 3644 0.256 0.600 0.998
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Gestational Age -0.045 0.045 3371 0.219 0.323 0.569 -0.044 0.042 3644 0.255 0.295 0.454
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Birth weight 0.017 0.040 3371 0.220 0.677 0.756 0.067 0.040 3644 0.258 0.095 0.244
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Tobacco use 0.027 0.047 3371 0.220 0.557 0.982 -0.084 0.044 3644 0.257 0.057 0.291
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Alcohol use 0.030 0.033 3371 0.221 0.366 0.901 0.043 0.032 3644 0.257 0.185 0.529
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Marijuana use 0.045 0.063 3371 0.220 0.478 0.819 0.054 0.064 3644 0.256 0.395 0.608
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Pregnancy complications -0.023 0.029 3371 0.220 0.426 0.942 0.003 0.028 3644 0.256 0.912 0.912
smri_vol_scs_amygdalarh Subcortical volume right-amygdala Birth complications -0.048 0.032 3371 0.220 0.135 0.272 -0.061 0.030 3644 0.257 0.041 0.118
smri_vol_scs_aar Subcortical volume right-accumbens area Unplanned pregnancy -0.023 0.035 3371 0.131 0.521 0.695 -0.033 0.034 3644 0.128 0.329 0.780
smri_vol_scs_aar Subcortical volume right-accumbens area C-Section 0.048 0.033 3371 0.131 0.140 0.560 0.063 0.031 3644 0.130 0.041 0.426
smri_vol_scs_aar Subcortical volume right-accumbens area Gestational Age 0.012 0.049 3371 0.130 0.810 0.852 -0.063 0.044 3644 0.128 0.153 0.336
smri_vol_scs_aar Subcortical volume right-accumbens area Birth weight -0.081 0.043 3371 0.132 0.058 0.146 -0.011 0.042 3644 0.128 0.799 0.888
smri_vol_scs_aar Subcortical volume right-accumbens area Tobacco use -0.125 0.050 3371 0.132 0.012 0.122 -0.092 0.047 3644 0.128 0.047 0.291
smri_vol_scs_aar Subcortical volume right-accumbens area Alcohol use -0.030 0.035 3371 0.130 0.401 0.901 -0.003 0.034 3644 0.128 0.918 0.998
smri_vol_scs_aar Subcortical volume right-accumbens area Marijuana use 0.007 0.068 3371 0.130 0.921 0.969 0.070 0.067 3644 0.128 0.294 0.608
smri_vol_scs_aar Subcortical volume right-accumbens area Pregnancy complications -0.004 0.031 3371 0.130 0.888 0.942 -0.018 0.030 3644 0.128 0.541 0.912
smri_vol_scs_aar Subcortical volume right-accumbens area Birth complications -0.041 0.034 3371 0.130 0.221 0.349 -0.040 0.031 3644 0.128 0.200 0.253
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Unplanned pregnancy 0.001 0.030 3371 0.346 0.961 0.983 -0.008 0.030 3644 0.378 0.780 0.897
smri_vol_scs_vedcrh Subcortical volume right-ventraldc C-Section 0.037 0.028 3371 0.345 0.187 0.624 0.044 0.027 3644 0.379 0.107 0.426
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Gestational Age -0.015 0.041 3371 0.346 0.726 0.807 0.030 0.040 3644 0.378 0.441 0.631
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Birth weight 0.093 0.037 3371 0.344 0.012 0.081 -0.007 0.037 3644 0.379 0.845 0.889
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Tobacco use 0.043 0.043 3371 0.345 0.310 0.982 -0.063 0.041 3644 0.378 0.123 0.307
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Alcohol use 0.047 0.030 3371 0.347 0.124 0.901 0.042 0.030 3644 0.380 0.163 0.529
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Marijuana use -0.033 0.058 3371 0.346 0.576 0.819 -0.012 0.059 3644 0.378 0.844 0.933
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Pregnancy complications 0.004 0.027 3371 0.345 0.895 0.942 0.011 0.026 3644 0.379 0.668 0.912
smri_vol_scs_vedcrh Subcortical volume right-ventraldc Birth complications -0.026 0.029 3371 0.346 0.372 0.496 -0.034 0.027 3644 0.379 0.215 0.253
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Unplanned pregnancy 0.004 0.034 3371 0.297 0.899 0.950 0.014 0.033 3644 0.289 0.664 0.880
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus C-Section -0.098 0.031 3371 0.299 0.001 0.038 -0.068 0.030 3644 0.290 0.023 0.123
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Gestational Age -0.148 0.044 3371 0.299 0.001 0.013 -0.100 0.042 3644 0.291 0.019 0.130
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Birth weight -0.081 0.041 3371 0.298 0.048 0.149 0.000 0.041 3644 0.289 0.994 0.994
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Tobacco use -0.045 0.047 3371 0.297 0.335 0.787 -0.069 0.045 3644 0.289 0.128 0.618
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Alcohol use 0.000 0.034 3371 0.297 0.999 0.999 -0.040 0.033 3644 0.289 0.222 0.890
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Marijuana use -0.063 0.065 3371 0.297 0.339 0.915 -0.035 0.065 3644 0.289 0.592 0.985
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Pregnancy complications 0.011 0.030 3371 0.297 0.716 0.935 -0.018 0.029 3644 0.289 0.542 0.840
smri_thick_cdk_banksstslh Cortical thickness lh-Banks of Superior Temporal Sulcus Birth complications -0.095 0.033 3371 0.299 0.004 0.262 0.000 0.031 3644 0.289 0.995 0.995
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Unplanned pregnancy 0.012 0.038 3371 0.130 0.742 0.950 -0.041 0.036 3644 0.136 0.262 0.804
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate C-Section 0.063 0.035 3371 0.132 0.070 0.237 0.061 0.033 3644 0.137 0.062 0.201
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Gestational Age 0.108 0.051 3371 0.133 0.034 0.177 0.051 0.047 3644 0.136 0.279 0.575
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Birth weight 0.069 0.046 3371 0.132 0.134 0.268 0.018 0.045 3644 0.135 0.686 0.805
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Tobacco use 0.011 0.053 3371 0.130 0.830 0.925 -0.135 0.050 3644 0.137 0.007 0.151
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Alcohol use 0.007 0.038 3371 0.130 0.857 0.955 -0.044 0.036 3644 0.136 0.223 0.890
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Marijuana use -0.042 0.073 3371 0.130 0.567 0.985 -0.160 0.072 3644 0.136 0.025 0.782
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Pregnancy complications 0.052 0.033 3371 0.131 0.113 0.730 0.021 0.032 3644 0.135 0.513 0.840
smri_thick_cdk_cdacatelh Cortical thickness lh-caudalanteriorcingulate Birth complications 0.012 0.036 3371 0.130 0.750 0.869 0.030 0.034 3644 0.135 0.375 0.749
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Unplanned pregnancy -0.009 0.029 3371 0.478 0.747 0.950 0.020 0.027 3644 0.510 0.453 0.870
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal C-Section 0.030 0.027 3371 0.478 0.266 0.565 -0.009 0.024 3644 0.510 0.697 0.895
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Gestational Age -0.030 0.039 3371 0.479 0.444 0.718 -0.025 0.035 3644 0.510 0.472 0.711
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Birth weight -0.024 0.035 3371 0.478 0.495 0.591 0.018 0.033 3644 0.510 0.599 0.785
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Tobacco use -0.036 0.040 3371 0.478 0.369 0.792 -0.003 0.037 3644 0.510 0.936 0.995
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Alcohol use -0.026 0.029 3371 0.478 0.372 0.955 -0.063 0.027 3644 0.510 0.020 0.514
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Marijuana use -0.073 0.055 3371 0.479 0.187 0.915 -0.048 0.053 3644 0.510 0.372 0.985
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Pregnancy complications -0.034 0.025 3371 0.479 0.176 0.730 -0.025 0.024 3644 0.510 0.292 0.709
smri_thick_cdk_cdmdfrlh Cortical thickness lh-caudalmiddlefrontal Birth complications -0.003 0.028 3371 0.478 0.919 0.947 -0.008 0.025 3644 0.510 0.760 0.916
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Unplanned pregnancy -0.004 0.034 3371 0.265 0.908 0.950 -0.002 0.032 3644 0.280 0.956 0.970
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus C-Section -0.019 0.031 3371 0.265 0.540 0.780 -0.035 0.029 3644 0.280 0.228 0.457
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Gestational Age 0.033 0.046 3371 0.265 0.470 0.722 0.087 0.042 3644 0.280 0.040 0.169
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Birth weight 0.029 0.041 3371 0.265 0.473 0.585 -0.065 0.040 3644 0.280 0.103 0.250
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Tobacco use 0.011 0.048 3371 0.265 0.818 0.925 0.074 0.045 3644 0.280 0.096 0.618
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Alcohol use -0.037 0.034 3371 0.265 0.269 0.955 0.074 0.032 3644 0.280 0.023 0.514
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Marijuana use -0.056 0.065 3371 0.265 0.392 0.985 0.165 0.064 3644 0.281 0.010 0.666
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Pregnancy complications -0.018 0.030 3371 0.265 0.538 0.850 -0.051 0.028 3644 0.280 0.072 0.401
smri_thick_cdk_cuneuslh Cortical thickness lh-cuneus Birth complications -0.029 0.033 3371 0.265 0.379 0.811 0.006 0.030 3644 0.280 0.846 0.958
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Unplanned pregnancy -0.043 0.038 3371 0.041 0.262 0.950 -0.015 0.036 3644 0.058 0.684 0.880
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal C-Section -0.035 0.036 3371 0.041 0.327 0.601 -0.066 0.033 3644 0.059 0.047 0.179
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Gestational Age 0.182 0.052 3371 0.042 0.000 0.010 0.067 0.047 3644 0.057 0.156 0.366
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Birth weight 0.053 0.047 3371 0.040 0.257 0.396 -0.011 0.045 3644 0.058 0.801 0.878
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Tobacco use 0.061 0.054 3371 0.041 0.262 0.787 -0.124 0.050 3644 0.059 0.013 0.180
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Alcohol use -0.011 0.038 3371 0.041 0.773 0.955 0.005 0.036 3644 0.058 0.891 0.996
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Marijuana use 0.025 0.074 3371 0.040 0.735 0.985 0.041 0.072 3644 0.058 0.575 0.985
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Pregnancy complications 0.086 0.034 3371 0.042 0.010 0.364 -0.013 0.032 3644 0.058 0.675 0.866
smri_thick_cdk_ehinallh Cortical thickness lh-entorhinal Birth complications 0.088 0.037 3371 0.042 0.018 0.315 0.008 0.034 3644 0.058 0.825 0.950
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Unplanned pregnancy -0.038 0.029 3371 0.411 0.184 0.950 -0.011 0.028 3644 0.387 0.695 0.880
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform C-Section -0.022 0.027 3371 0.411 0.415 0.724 -0.035 0.026 3644 0.388 0.174 0.381
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Gestational Age -0.024 0.039 3371 0.411 0.530 0.729 -0.009 0.037 3644 0.387 0.799 0.960
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Birth weight 0.045 0.035 3371 0.410 0.203 0.373 -0.040 0.035 3644 0.388 0.252 0.441
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Tobacco use 0.032 0.040 3371 0.411 0.433 0.809 0.032 0.039 3644 0.388 0.409 0.868
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Alcohol use 0.011 0.029 3371 0.411 0.713 0.955 0.028 0.028 3644 0.388 0.324 0.900
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Marijuana use 0.019 0.055 3371 0.411 0.728 0.985 -0.051 0.056 3644 0.387 0.361 0.985
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Pregnancy complications 0.025 0.025 3371 0.411 0.324 0.759 -0.001 0.025 3644 0.387 0.964 0.969
smri_thick_cdk_fusiformlh Cortical thickness lh-fusiform Birth complications 0.008 0.028 3371 0.410 0.767 0.869 0.030 0.026 3644 0.387 0.263 0.749
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Unplanned pregnancy -0.020 0.023 3371 0.645 0.377 0.950 0.012 0.022 3644 0.632 0.572 0.870
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal C-Section 0.004 0.021 3371 0.644 0.853 0.936 -0.052 0.020 3644 0.633 0.008 0.082
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Gestational Age -0.090 0.031 3371 0.645 0.004 0.037 -0.116 0.028 3644 0.633 0.000 0.002
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Birth weight -0.029 0.028 3371 0.644 0.294 0.425 0.016 0.027 3644 0.632 0.545 0.741
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Tobacco use -0.018 0.032 3371 0.644 0.567 0.836 0.028 0.030 3644 0.632 0.358 0.811
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Alcohol use 0.015 0.023 3371 0.644 0.496 0.955 0.008 0.022 3644 0.632 0.718 0.996
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Marijuana use 0.005 0.044 3371 0.644 0.914 0.992 -0.021 0.043 3644 0.632 0.620 0.985
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Pregnancy complications -0.027 0.020 3371 0.645 0.176 0.730 -0.054 0.019 3644 0.633 0.005 0.109
smri_thick_cdk_ifpllh Cortical thickness lh-inferiorparietal Birth complications -0.020 0.022 3371 0.644 0.353 0.811 -0.023 0.020 3644 0.632 0.268 0.749
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Unplanned pregnancy -0.020 0.029 3371 0.479 0.481 0.950 -0.017 0.029 3644 0.462 0.549 0.870
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal C-Section -0.031 0.027 3371 0.479 0.245 0.563 -0.001 0.026 3644 0.462 0.967 0.980
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Gestational Age 0.025 0.039 3371 0.479 0.512 0.725 0.066 0.037 3644 0.462 0.078 0.230
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Birth weight 0.066 0.035 3371 0.479 0.060 0.163 0.015 0.035 3644 0.462 0.669 0.805
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Tobacco use -0.049 0.040 3371 0.479 0.225 0.764 0.006 0.039 3644 0.462 0.871 0.995
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Alcohol use 0.026 0.029 3371 0.480 0.357 0.955 0.011 0.029 3644 0.462 0.709 0.996
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Marijuana use 0.018 0.055 3371 0.479 0.744 0.985 0.071 0.057 3644 0.462 0.212 0.985
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Pregnancy complications 0.038 0.025 3371 0.480 0.134 0.730 -0.032 0.025 3644 0.462 0.208 0.588
smri_thick_cdk_iftmlh Cortical thickness lh-inferiortemporal Birth complications 0.009 0.028 3371 0.479 0.751 0.869 0.020 0.027 3644 0.462 0.443 0.771
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Unplanned pregnancy 0.033 0.039 3371 0.098 0.398 0.950 0.031 0.038 3644 0.102 0.420 0.870
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate C-Section -0.007 0.036 3371 0.097 0.840 0.936 -0.028 0.034 3644 0.102 0.420 0.656
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Gestational Age 0.032 0.052 3371 0.098 0.536 0.729 0.078 0.048 3644 0.103 0.107 0.291
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Birth weight 0.082 0.047 3371 0.099 0.084 0.196 0.086 0.047 3644 0.103 0.066 0.194
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Tobacco use 0.041 0.055 3371 0.098 0.452 0.809 0.028 0.052 3644 0.102 0.586 0.927
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Alcohol use 0.033 0.039 3371 0.097 0.403 0.955 -0.012 0.038 3644 0.102 0.750 0.996
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Marijuana use 0.011 0.075 3371 0.097 0.883 0.992 -0.064 0.075 3644 0.102 0.394 0.985
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Pregnancy complications 0.025 0.034 3371 0.098 0.465 0.802 0.030 0.033 3644 0.102 0.365 0.742
smri_thick_cdk_ihcatelh Cortical thickness lh-isthmuscingulate Birth complications 0.012 0.038 3371 0.098 0.757 0.869 0.022 0.035 3644 0.102 0.523 0.800
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Unplanned pregnancy -0.024 0.024 3371 0.582 0.315 0.950 -0.009 0.023 3644 0.591 0.699 0.880
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital C-Section 0.015 0.022 3371 0.583 0.493 0.747 -0.003 0.021 3644 0.591 0.902 0.974
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Gestational Age 0.062 0.033 3371 0.584 0.062 0.212 0.087 0.031 3644 0.594 0.004 0.060
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Birth weight 0.028 0.029 3371 0.583 0.330 0.458 -0.004 0.029 3644 0.591 0.879 0.925
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Tobacco use -0.057 0.034 3371 0.583 0.089 0.660 0.041 0.032 3644 0.591 0.203 0.643
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Alcohol use -0.005 0.024 3371 0.582 0.849 0.955 0.034 0.023 3644 0.591 0.146 0.890
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Marijuana use -0.020 0.046 3371 0.582 0.658 0.985 0.027 0.046 3644 0.591 0.549 0.985
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Pregnancy complications -0.005 0.021 3371 0.582 0.818 0.958 0.020 0.020 3644 0.591 0.334 0.720
smri_thick_cdk_locclh Cortical thickness lh-lateraloccipital Birth complications -0.007 0.023 3371 0.582 0.753 0.869 0.014 0.022 3644 0.592 0.512 0.800
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Unplanned pregnancy 0.057 0.031 3371 0.399 0.066 0.950 0.025 0.030 3644 0.400 0.418 0.870
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal C-Section 0.129 0.029 3371 0.404 0.000 0.000 0.070 0.028 3644 0.402 0.011 0.088
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Gestational Age 0.053 0.042 3371 0.400 0.208 0.516 0.087 0.040 3644 0.402 0.028 0.169
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Birth weight 0.159 0.038 3371 0.402 0.000 0.000 0.105 0.038 3644 0.402 0.005 0.040
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Tobacco use 0.096 0.044 3371 0.399 0.028 0.475 -0.064 0.042 3644 0.400 0.126 0.618
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Alcohol use 0.010 0.031 3371 0.399 0.744 0.955 0.035 0.030 3644 0.400 0.250 0.890
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Marijuana use -0.005 0.060 3371 0.399 0.940 0.992 0.040 0.060 3644 0.400 0.509 0.985
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Pregnancy complications 0.044 0.027 3371 0.399 0.103 0.730 0.038 0.027 3644 0.401 0.151 0.540
smri_thick_cdk_lobfrlh Cortical thickness lh-lateralorbitofrontal Birth complications 0.012 0.030 3371 0.399 0.699 0.869 0.018 0.028 3644 0.400 0.529 0.800
smri_thick_cdk_linguallh Cortical thickness lh-lingual Unplanned pregnancy -0.072 0.032 3371 0.151 0.025 0.840 -0.034 0.031 3644 0.181 0.265 0.804
smri_thick_cdk_linguallh Cortical thickness lh-lingual C-Section 0.030 0.030 3371 0.150 0.312 0.595 0.064 0.028 3644 0.181 0.023 0.123
smri_thick_cdk_linguallh Cortical thickness lh-lingual Gestational Age 0.004 0.044 3371 0.150 0.922 0.979 0.025 0.040 3644 0.181 0.538 0.755
smri_thick_cdk_linguallh Cortical thickness lh-lingual Birth weight -0.104 0.039 3371 0.153 0.008 0.033 -0.064 0.038 3644 0.183 0.093 0.234
smri_thick_cdk_linguallh Cortical thickness lh-lingual Tobacco use 0.043 0.045 3371 0.150 0.347 0.787 0.026 0.042 3644 0.182 0.537 0.889
smri_thick_cdk_linguallh Cortical thickness lh-lingual Alcohol use 0.026 0.032 3371 0.151 0.426 0.955 0.040 0.031 3644 0.183 0.190 0.890
smri_thick_cdk_linguallh Cortical thickness lh-lingual Marijuana use 0.037 0.062 3371 0.150 0.553 0.985 0.066 0.061 3644 0.182 0.274 0.985
smri_thick_cdk_linguallh Cortical thickness lh-lingual Pregnancy complications -0.036 0.028 3371 0.151 0.204 0.730 0.038 0.027 3644 0.182 0.157 0.540
smri_thick_cdk_linguallh Cortical thickness lh-lingual Birth complications 0.046 0.031 3371 0.150 0.136 0.811 0.014 0.029 3644 0.182 0.625 0.854
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Unplanned pregnancy 0.015 0.035 3371 0.048 0.668 0.950 -0.053 0.034 3644 0.070 0.113 0.755
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal C-Section 0.064 0.033 3371 0.050 0.048 0.206 0.042 0.031 3644 0.071 0.173 0.381
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Gestational Age 0.186 0.047 3371 0.052 0.000 0.005 0.178 0.043 3644 0.073 0.000 0.002
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Birth weight 0.204 0.043 3371 0.052 0.000 0.000 0.084 0.042 3644 0.072 0.046 0.164
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Tobacco use 0.021 0.049 3371 0.048 0.669 0.907 0.000 0.046 3644 0.070 1.000 1.000
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Alcohol use -0.029 0.035 3371 0.048 0.408 0.955 -0.035 0.034 3644 0.070 0.291 0.900
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Marijuana use 0.067 0.068 3371 0.048 0.322 0.915 -0.047 0.067 3644 0.070 0.479 0.985
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Pregnancy complications 0.029 0.031 3371 0.049 0.341 0.772 0.036 0.030 3644 0.071 0.228 0.596
smri_thick_cdk_mobfrlh Cortical thickness lh-medialorbitofrontal Birth complications 0.055 0.034 3371 0.049 0.110 0.811 0.057 0.031 3644 0.072 0.069 0.339
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Unplanned pregnancy -0.013 0.028 3371 0.507 0.638 0.950 -0.013 0.027 3644 0.501 0.626 0.870
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal C-Section -0.075 0.026 3371 0.508 0.004 0.052 -0.067 0.025 3644 0.502 0.007 0.079
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Gestational Age -0.075 0.037 3371 0.508 0.044 0.178 -0.048 0.035 3644 0.501 0.178 0.391
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Birth weight -0.103 0.034 3371 0.508 0.003 0.014 -0.048 0.034 3644 0.501 0.152 0.323
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Tobacco use 0.005 0.039 3371 0.507 0.900 0.952 -0.074 0.038 3644 0.501 0.048 0.467
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Alcohol use 0.006 0.028 3371 0.507 0.824 0.955 0.013 0.027 3644 0.501 0.637 0.996
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Marijuana use 0.012 0.054 3371 0.507 0.826 0.985 0.001 0.054 3644 0.501 0.984 0.985
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Pregnancy complications -0.024 0.024 3371 0.507 0.318 0.759 0.004 0.024 3644 0.501 0.883 0.969
smri_thick_cdk_mdtmlh Cortical thickness lh-middletemporal Birth complications -0.021 0.027 3371 0.507 0.434 0.811 -0.007 0.025 3644 0.501 0.768 0.916
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Unplanned pregnancy -0.026 0.038 3371 0.073 0.499 0.950 -0.031 0.038 3644 0.078 0.403 0.870
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal C-Section 0.095 0.035 3371 0.075 0.008 0.074 0.047 0.034 3644 0.078 0.166 0.381
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Gestational Age 0.131 0.052 3371 0.074 0.012 0.088 -0.016 0.049 3644 0.078 0.749 0.926
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Birth weight 0.058 0.047 3371 0.073 0.217 0.379 -0.007 0.047 3644 0.078 0.884 0.925
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Tobacco use -0.046 0.054 3371 0.074 0.396 0.792 -0.078 0.052 3644 0.078 0.135 0.618
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Alcohol use -0.028 0.038 3371 0.073 0.464 0.955 -0.006 0.038 3644 0.078 0.874 0.996
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Marijuana use 0.047 0.074 3371 0.073 0.521 0.985 -0.014 0.074 3644 0.078 0.849 0.985
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Pregnancy complications 0.015 0.034 3371 0.073 0.648 0.935 0.050 0.033 3644 0.078 0.131 0.540
smri_thick_cdk_parahpallh Cortical thickness lh-parahippocampal Birth complications 0.045 0.037 3371 0.073 0.222 0.811 -0.026 0.035 3644 0.078 0.454 0.771
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Unplanned pregnancy 0.074 0.029 3371 0.508 0.009 0.641 -0.008 0.028 3644 0.519 0.777 0.885
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral C-Section 0.002 0.026 3371 0.507 0.941 0.974 -0.048 0.025 3644 0.519 0.056 0.197
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Gestational Age -0.010 0.038 3371 0.507 0.783 0.905 -0.030 0.035 3644 0.519 0.401 0.660
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Birth weight -0.039 0.035 3371 0.508 0.259 0.396 -0.066 0.034 3644 0.519 0.052 0.175
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Tobacco use -0.004 0.040 3371 0.507 0.920 0.952 -0.026 0.038 3644 0.519 0.501 0.889
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Alcohol use -0.019 0.029 3371 0.507 0.506 0.955 -0.009 0.027 3644 0.519 0.751 0.996
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Marijuana use 0.062 0.056 3371 0.508 0.266 0.915 -0.043 0.055 3644 0.519 0.433 0.985
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Pregnancy complications 0.028 0.025 3371 0.508 0.263 0.759 -0.007 0.024 3644 0.519 0.778 0.928
smri_thick_cdk_paracnlh Cortical thickness lh-paracentral Birth complications 0.012 0.028 3371 0.507 0.662 0.869 0.011 0.026 3644 0.519 0.670 0.876
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Unplanned pregnancy 0.030 0.029 3371 0.471 0.312 0.950 -0.034 0.029 3644 0.465 0.240 0.804
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis C-Section -0.041 0.027 3371 0.471 0.133 0.348 -0.043 0.026 3644 0.466 0.100 0.295
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Gestational Age 0.022 0.038 3371 0.471 0.569 0.744 -0.036 0.037 3644 0.466 0.335 0.630
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Birth weight -0.041 0.036 3371 0.471 0.260 0.396 0.044 0.036 3644 0.466 0.215 0.406
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Tobacco use 0.029 0.041 3371 0.471 0.479 0.813 0.007 0.040 3644 0.465 0.858 0.995
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Alcohol use 0.019 0.029 3371 0.471 0.506 0.955 0.019 0.029 3644 0.466 0.521 0.996
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Marijuana use 0.032 0.057 3371 0.471 0.578 0.985 -0.004 0.058 3644 0.465 0.948 0.985
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Pregnancy complications -0.009 0.026 3371 0.471 0.715 0.935 0.011 0.026 3644 0.465 0.673 0.866
smri_thick_cdk_parsopclh Cortical thickness lh-parsopercularis Birth complications -0.005 0.029 3371 0.471 0.852 0.913 0.023 0.027 3644 0.465 0.386 0.749
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Unplanned pregnancy 0.016 0.034 3371 0.290 0.646 0.950 0.002 0.033 3644 0.270 0.941 0.970
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis C-Section -0.077 0.031 3371 0.291 0.015 0.111 -0.127 0.030 3644 0.273 0.000 0.001
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Gestational Age -0.097 0.045 3371 0.290 0.030 0.172 -0.122 0.042 3644 0.272 0.004 0.060
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Birth weight -0.021 0.042 3371 0.290 0.612 0.682 0.029 0.041 3644 0.270 0.475 0.687
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Tobacco use 0.027 0.048 3371 0.289 0.575 0.836 0.010 0.046 3644 0.270 0.832 0.995
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Alcohol use 0.043 0.034 3371 0.290 0.207 0.955 0.046 0.033 3644 0.271 0.159 0.890
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Marijuana use -0.068 0.066 3371 0.290 0.302 0.915 0.057 0.066 3644 0.270 0.384 0.985
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Pregnancy complications -0.005 0.030 3371 0.290 0.859 0.958 -0.039 0.029 3644 0.271 0.175 0.567
smri_thick_cdk_parsobislh Cortical thickness lh-parsorbitalis Birth complications -0.013 0.033 3371 0.290 0.694 0.869 -0.001 0.031 3644 0.270 0.966 0.995
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Unplanned pregnancy 0.029 0.031 3371 0.402 0.359 0.950 -0.015 0.030 3644 0.421 0.627 0.870
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis C-Section -0.089 0.029 3371 0.403 0.002 0.038 -0.058 0.027 3644 0.422 0.032 0.147
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Gestational Age -0.013 0.041 3371 0.402 0.748 0.892 -0.104 0.038 3644 0.423 0.007 0.076
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Birth weight -0.001 0.038 3371 0.402 0.977 0.977 0.070 0.037 3644 0.421 0.062 0.194
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Tobacco use -0.013 0.044 3371 0.402 0.762 0.925 -0.051 0.041 3644 0.421 0.218 0.643
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Alcohol use 0.058 0.031 3371 0.403 0.064 0.785 -0.015 0.030 3644 0.421 0.612 0.996
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Marijuana use 0.103 0.061 3371 0.402 0.091 0.915 0.007 0.060 3644 0.421 0.901 0.985
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Pregnancy complications -0.024 0.028 3371 0.402 0.374 0.802 -0.021 0.026 3644 0.421 0.421 0.770
smri_thick_cdk_parstgrislh Cortical thickness lh-parstriangularis Birth complications -0.081 0.031 3371 0.403 0.009 0.290 -0.057 0.028 3644 0.422 0.044 0.339
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Unplanned pregnancy 0.018 0.034 3371 0.195 0.602 0.950 -0.019 0.034 3644 0.192 0.567 0.870
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine C-Section 0.059 0.032 3371 0.195 0.065 0.231 0.064 0.031 3644 0.193 0.036 0.153
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Gestational Age 0.116 0.047 3371 0.195 0.014 0.095 0.090 0.044 3644 0.193 0.043 0.174
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Birth weight -0.076 0.042 3371 0.195 0.069 0.174 -0.089 0.042 3644 0.193 0.035 0.138
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Tobacco use 0.032 0.049 3371 0.195 0.509 0.824 0.125 0.047 3644 0.194 0.008 0.151
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Alcohol use 0.011 0.034 3371 0.195 0.741 0.955 0.015 0.034 3644 0.192 0.667 0.996
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Marijuana use 0.086 0.066 3371 0.195 0.195 0.915 0.083 0.067 3644 0.192 0.213 0.985
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Pregnancy complications -0.023 0.030 3371 0.195 0.455 0.802 -0.005 0.030 3644 0.192 0.862 0.961
smri_thick_cdk_pericclh Cortical thickness lh-pericalcarine Birth complications 0.016 0.033 3371 0.195 0.620 0.869 -0.022 0.031 3644 0.192 0.482 0.780
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Unplanned pregnancy -0.004 0.028 3371 0.534 0.873 0.950 0.018 0.026 3644 0.542 0.495 0.870
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral C-Section -0.017 0.026 3371 0.534 0.507 0.750 0.007 0.024 3644 0.542 0.754 0.932
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Gestational Age -0.028 0.038 3371 0.534 0.456 0.721 -0.050 0.034 3644 0.541 0.146 0.354
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Birth weight -0.090 0.034 3371 0.535 0.007 0.033 -0.013 0.033 3644 0.542 0.701 0.808
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Tobacco use 0.040 0.039 3371 0.534 0.306 0.787 -0.056 0.036 3644 0.542 0.119 0.618
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Alcohol use 0.019 0.028 3371 0.534 0.498 0.955 -0.024 0.026 3644 0.542 0.368 0.900
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Marijuana use 0.083 0.053 3371 0.534 0.122 0.915 0.002 0.052 3644 0.542 0.969 0.985
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Pregnancy complications -0.008 0.024 3371 0.534 0.738 0.935 -0.023 0.023 3644 0.542 0.316 0.720
smri_thick_cdk_postcnlh Cortical thickness lh-postcentral Birth complications 0.031 0.027 3371 0.534 0.252 0.811 -0.025 0.024 3644 0.542 0.301 0.749
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Unplanned pregnancy 0.067 0.037 3371 0.166 0.070 0.950 0.026 0.036 3644 0.159 0.475 0.870
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate C-Section -0.017 0.035 3371 0.166 0.629 0.823 0.018 0.033 3644 0.159 0.578 0.802
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Gestational Age -0.030 0.050 3371 0.165 0.551 0.734 0.045 0.047 3644 0.160 0.343 0.630
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Birth weight -0.046 0.045 3371 0.165 0.312 0.442 0.053 0.045 3644 0.160 0.240 0.441
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Tobacco use 0.045 0.053 3371 0.166 0.388 0.792 -0.136 0.050 3644 0.161 0.007 0.151
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Alcohol use 0.034 0.037 3371 0.166 0.363 0.955 -0.054 0.036 3644 0.160 0.138 0.890
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Marijuana use 0.084 0.072 3371 0.166 0.241 0.915 -0.133 0.072 3644 0.160 0.065 0.886
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Pregnancy complications 0.015 0.033 3371 0.166 0.651 0.935 -0.007 0.032 3644 0.159 0.835 0.954
smri_thick_cdk_ptcatelh Cortical thickness lh-posteriorcingulate Birth complications -0.026 0.036 3371 0.166 0.474 0.811 0.078 0.034 3644 0.160 0.021 0.339
smri_thick_cdk_precnlh Cortical thickness lh-precentral Unplanned pregnancy 0.034 0.025 3371 0.623 0.171 0.950 0.025 0.024 3644 0.632 0.295 0.804
smri_thick_cdk_precnlh Cortical thickness lh-precentral C-Section 0.017 0.023 3371 0.622 0.458 0.738 -0.005 0.021 3644 0.632 0.829 0.972
smri_thick_cdk_precnlh Cortical thickness lh-precentral Gestational Age -0.039 0.034 3371 0.622 0.255 0.526 -0.002 0.031 3644 0.632 0.945 0.960
smri_thick_cdk_precnlh Cortical thickness lh-precentral Birth weight -0.022 0.030 3371 0.622 0.459 0.578 -0.078 0.029 3644 0.632 0.007 0.042
smri_thick_cdk_precnlh Cortical thickness lh-precentral Tobacco use -0.071 0.035 3371 0.623 0.044 0.508 -0.003 0.032 3644 0.632 0.936 0.995
smri_thick_cdk_precnlh Cortical thickness lh-precentral Alcohol use 0.007 0.025 3371 0.622 0.788 0.955 -0.027 0.023 3644 0.632 0.249 0.890
smri_thick_cdk_precnlh Cortical thickness lh-precentral Marijuana use -0.001 0.048 3371 0.622 0.986 0.992 -0.098 0.047 3644 0.632 0.035 0.782
smri_thick_cdk_precnlh Cortical thickness lh-precentral Pregnancy complications -0.008 0.022 3371 0.622 0.699 0.935 -0.012 0.021 3644 0.632 0.552 0.840
smri_thick_cdk_precnlh Cortical thickness lh-precentral Birth complications 0.019 0.024 3371 0.622 0.438 0.811 -0.016 0.022 3644 0.632 0.458 0.771
smri_thick_cdk_pclh Cortical thickness lh-precuneus Unplanned pregnancy -0.006 0.026 3371 0.583 0.821 0.950 0.020 0.025 3644 0.587 0.406 0.870
smri_thick_cdk_pclh Cortical thickness lh-precuneus C-Section -0.062 0.024 3371 0.584 0.009 0.079 -0.071 0.022 3644 0.589 0.001 0.025
smri_thick_cdk_pclh Cortical thickness lh-precuneus Gestational Age -0.012 0.035 3371 0.583 0.732 0.892 0.023 0.032 3644 0.587 0.469 0.711
smri_thick_cdk_pclh Cortical thickness lh-precuneus Birth weight -0.055 0.032 3371 0.584 0.080 0.194 -0.024 0.031 3644 0.587 0.440 0.650
smri_thick_cdk_pclh Cortical thickness lh-precuneus Tobacco use -0.009 0.036 3371 0.583 0.799 0.925 0.001 0.034 3644 0.587 0.981 1.000
smri_thick_cdk_pclh Cortical thickness lh-precuneus Alcohol use -0.008 0.026 3371 0.583 0.771 0.955 0.004 0.025 3644 0.587 0.872 0.996
smri_thick_cdk_pclh Cortical thickness lh-precuneus Marijuana use 0.016 0.050 3371 0.583 0.754 0.985 -0.029 0.049 3644 0.587 0.548 0.985
smri_thick_cdk_pclh Cortical thickness lh-precuneus Pregnancy complications 0.032 0.023 3371 0.583 0.164 0.730 -0.040 0.022 3644 0.588 0.065 0.399
smri_thick_cdk_pclh Cortical thickness lh-precuneus Birth complications 0.004 0.025 3371 0.583 0.859 0.913 0.012 0.023 3644 0.587 0.589 0.835
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Unplanned pregnancy 0.009 0.037 3371 0.157 0.799 0.950 0.043 0.035 3644 0.190 0.218 0.804
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate C-Section 0.004 0.034 3371 0.157 0.900 0.956 0.029 0.031 3644 0.191 0.353 0.648
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Gestational Age 0.099 0.049 3371 0.159 0.044 0.178 0.059 0.044 3644 0.191 0.186 0.396
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Birth weight 0.084 0.045 3371 0.159 0.063 0.165 0.135 0.043 3644 0.194 0.002 0.021
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Tobacco use 0.121 0.052 3371 0.158 0.019 0.435 -0.004 0.048 3644 0.190 0.932 0.995
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Alcohol use 0.015 0.037 3371 0.157 0.689 0.955 0.000 0.034 3644 0.190 0.989 0.997
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Marijuana use -0.003 0.071 3371 0.157 0.962 0.992 -0.026 0.069 3644 0.190 0.703 0.985
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Pregnancy complications 0.027 0.032 3371 0.157 0.403 0.802 0.013 0.030 3644 0.190 0.675 0.866
smri_thick_cdk_rracatelh Cortical thickness lh-rostralanteriorcingulate Birth complications 0.003 0.036 3371 0.157 0.936 0.950 0.003 0.032 3644 0.190 0.928 0.988
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Unplanned pregnancy -0.007 0.023 3371 0.652 0.775 0.950 0.033 0.022 3644 0.662 0.136 0.755
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal C-Section -0.006 0.022 3371 0.652 0.770 0.904 -0.016 0.020 3644 0.662 0.412 0.656
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Gestational Age -0.048 0.032 3371 0.652 0.134 0.364 -0.006 0.029 3644 0.662 0.838 0.960
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Birth weight 0.032 0.029 3371 0.653 0.268 0.396 0.056 0.027 3644 0.663 0.040 0.152
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Tobacco use 0.003 0.033 3371 0.652 0.918 0.952 0.003 0.031 3644 0.662 0.918 0.995
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Alcohol use -0.005 0.023 3371 0.652 0.821 0.955 -0.005 0.022 3644 0.662 0.836 0.996
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Marijuana use 0.020 0.045 3371 0.652 0.660 0.985 0.068 0.044 3644 0.662 0.122 0.985
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Pregnancy complications -0.053 0.021 3371 0.653 0.011 0.364 -0.009 0.020 3644 0.662 0.656 0.866
smri_thick_cdk_rrmdfrlh Cortical thickness lh-rostralmiddlefrontal Birth complications -0.028 0.023 3371 0.652 0.225 0.811 0.018 0.021 3644 0.662 0.371 0.749
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Unplanned pregnancy 0.028 0.024 3371 0.657 0.236 0.950 0.017 0.023 3644 0.664 0.452 0.870
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal C-Section 0.013 0.022 3371 0.657 0.551 0.780 -0.035 0.021 3644 0.664 0.087 0.270
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Gestational Age -0.031 0.032 3371 0.657 0.338 0.630 0.026 0.030 3644 0.664 0.384 0.660
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Birth weight 0.073 0.029 3371 0.658 0.011 0.041 0.113 0.028 3644 0.666 0.000 0.002
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Tobacco use -0.002 0.033 3371 0.657 0.948 0.952 0.003 0.031 3644 0.664 0.931 0.995
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Alcohol use -0.002 0.024 3371 0.657 0.936 0.999 -0.029 0.023 3644 0.664 0.192 0.890
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Marijuana use -0.016 0.045 3371 0.657 0.719 0.985 -0.001 0.045 3644 0.664 0.985 0.985
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Pregnancy complications -0.007 0.021 3371 0.657 0.741 0.935 0.020 0.020 3644 0.664 0.324 0.720
smri_thick_cdk_sufrlh Cortical thickness lh-superiorfrontal Birth complications -0.016 0.023 3371 0.657 0.490 0.811 0.008 0.021 3644 0.664 0.712 0.897
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Unplanned pregnancy -0.009 0.022 3371 0.689 0.686 0.950 -0.045 0.021 3644 0.688 0.036 0.755
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal C-Section 0.037 0.021 3371 0.689 0.073 0.237 -0.015 0.019 3644 0.688 0.434 0.656
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Gestational Age 0.029 0.030 3371 0.689 0.332 0.630 -0.009 0.028 3644 0.688 0.743 0.926
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Birth weight -0.023 0.027 3371 0.689 0.407 0.522 -0.014 0.027 3644 0.688 0.601 0.785
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Tobacco use -0.057 0.032 3371 0.689 0.068 0.581 -0.036 0.029 3644 0.688 0.222 0.643
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Alcohol use -0.044 0.022 3371 0.689 0.047 0.785 -0.030 0.021 3644 0.688 0.154 0.890
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Marijuana use 0.001 0.043 3371 0.689 0.987 0.992 -0.042 0.042 3644 0.688 0.323 0.985
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Pregnancy complications -0.008 0.020 3371 0.689 0.678 0.935 -0.047 0.019 3644 0.688 0.012 0.204
smri_thick_cdk_supllh Cortical thickness lh-superiorparietal Birth complications 0.017 0.022 3371 0.689 0.429 0.811 0.011 0.020 3644 0.688 0.572 0.828
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Unplanned pregnancy -0.013 0.027 3371 0.551 0.629 0.950 -0.018 0.026 3644 0.555 0.504 0.870
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal C-Section -0.042 0.025 3371 0.551 0.092 0.273 -0.004 0.024 3644 0.555 0.861 0.974
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Gestational Age -0.001 0.037 3371 0.550 0.979 0.997 0.047 0.035 3644 0.556 0.173 0.391
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Birth weight 0.020 0.033 3371 0.551 0.547 0.641 0.042 0.032 3644 0.555 0.193 0.386
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Tobacco use 0.074 0.038 3371 0.551 0.052 0.508 -0.054 0.036 3644 0.555 0.136 0.618
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Alcohol use 0.032 0.027 3371 0.551 0.231 0.955 0.015 0.026 3644 0.555 0.579 0.996
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Marijuana use 0.058 0.052 3371 0.551 0.268 0.915 0.002 0.052 3644 0.555 0.972 0.985
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Pregnancy complications -0.001 0.024 3371 0.550 0.954 0.962 0.052 0.023 3644 0.556 0.027 0.258
smri_thick_cdk_sutmlh Cortical thickness lh-superiortemporal Birth complications -0.062 0.026 3371 0.551 0.019 0.315 0.011 0.024 3644 0.555 0.641 0.855
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Unplanned pregnancy -0.016 0.024 3371 0.589 0.493 0.950 -0.008 0.022 3644 0.612 0.711 0.880
smri_thick_cdk_smlh Cortical thickness lh-supramarginal C-Section 0.009 0.022 3371 0.589 0.687 0.835 0.013 0.020 3644 0.612 0.529 0.765
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Gestational Age -0.051 0.032 3371 0.589 0.112 0.332 -0.053 0.029 3644 0.612 0.068 0.228
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Birth weight -0.084 0.029 3371 0.589 0.004 0.019 0.013 0.028 3644 0.612 0.626 0.803
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Tobacco use 0.047 0.033 3371 0.589 0.154 0.660 -0.006 0.031 3644 0.612 0.854 0.995
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Alcohol use -0.034 0.024 3371 0.589 0.151 0.955 0.006 0.022 3644 0.612 0.783 0.996
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Marijuana use 0.038 0.046 3371 0.589 0.409 0.985 -0.018 0.044 3644 0.612 0.679 0.985
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Pregnancy complications 0.008 0.021 3371 0.589 0.692 0.935 -0.011 0.020 3644 0.612 0.566 0.840
smri_thick_cdk_smlh Cortical thickness lh-supramarginal Birth complications 0.007 0.023 3371 0.589 0.747 0.869 -0.032 0.021 3644 0.612 0.122 0.554
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Unplanned pregnancy 0.019 0.037 3371 0.157 0.612 0.950 -0.020 0.037 3644 0.134 0.588 0.870
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole C-Section 0.054 0.034 3371 0.158 0.116 0.315 0.007 0.033 3644 0.134 0.827 0.972
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Gestational Age 0.100 0.048 3371 0.159 0.038 0.178 0.019 0.046 3644 0.134 0.686 0.881
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Birth weight 0.096 0.046 3371 0.159 0.035 0.114 0.106 0.046 3644 0.135 0.020 0.092
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Tobacco use 0.041 0.052 3371 0.157 0.430 0.809 0.048 0.051 3644 0.134 0.341 0.811
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Alcohol use 0.051 0.037 3371 0.158 0.174 0.955 0.034 0.037 3644 0.134 0.356 0.900
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Marijuana use 0.115 0.072 3371 0.158 0.113 0.915 -0.008 0.073 3644 0.134 0.917 0.985
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Pregnancy complications 0.078 0.033 3371 0.159 0.017 0.377 0.003 0.032 3644 0.134 0.932 0.969
smri_thick_cdk_frpolelh Cortical thickness lh-frontalpole Birth complications 0.053 0.036 3371 0.158 0.148 0.811 0.050 0.034 3644 0.135 0.142 0.603
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Unplanned pregnancy -0.015 0.037 3371 0.153 0.690 0.950 -0.010 0.036 3644 0.175 0.776 0.885
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole C-Section 0.029 0.034 3371 0.153 0.404 0.722 0.043 0.032 3644 0.176 0.186 0.395
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Gestational Age 0.024 0.049 3371 0.153 0.628 0.806 0.032 0.046 3644 0.176 0.481 0.711
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Birth weight 0.109 0.045 3371 0.154 0.016 0.057 0.121 0.044 3644 0.177 0.006 0.042
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Tobacco use 0.069 0.052 3371 0.153 0.183 0.688 0.022 0.049 3644 0.176 0.648 0.993
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Alcohol use -0.037 0.037 3371 0.153 0.322 0.955 0.052 0.036 3644 0.176 0.141 0.890
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Marijuana use -0.008 0.072 3371 0.153 0.913 0.992 0.131 0.071 3644 0.176 0.065 0.886
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Pregnancy complications 0.042 0.033 3371 0.153 0.195 0.730 0.044 0.031 3644 0.176 0.159 0.540
smri_thick_cdk_tmpolelh Cortical thickness lh-temporalpole Birth complications -0.026 0.036 3371 0.153 0.478 0.811 0.003 0.033 3644 0.176 0.930 0.988
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Unplanned pregnancy -0.013 0.034 3371 0.263 0.713 0.950 0.001 0.034 3644 0.222 0.977 0.977
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal C-Section -0.066 0.032 3371 0.264 0.039 0.179 -0.045 0.031 3644 0.223 0.154 0.375
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Gestational Age -0.075 0.047 3371 0.263 0.106 0.332 0.007 0.045 3644 0.221 0.876 0.960
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Birth weight -0.082 0.042 3371 0.264 0.050 0.149 -0.041 0.043 3644 0.222 0.330 0.527
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Tobacco use 0.063 0.048 3371 0.263 0.192 0.688 0.001 0.047 3644 0.222 0.990 1.000
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Alcohol use 0.016 0.034 3371 0.263 0.635 0.955 0.018 0.034 3644 0.222 0.595 0.996
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Marijuana use 0.062 0.066 3371 0.263 0.348 0.915 0.065 0.068 3644 0.222 0.337 0.985
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Pregnancy complications -0.031 0.030 3371 0.263 0.302 0.759 0.017 0.030 3644 0.222 0.568 0.840
smri_thick_cdk_trvtmlh Cortical thickness lh-transversetemporal Birth complications -0.032 0.033 3371 0.263 0.331 0.811 0.013 0.032 3644 0.221 0.689 0.884
smri_thick_cdk_insulalh Cortical thickness lh-insula Unplanned pregnancy 0.015 0.035 3371 0.131 0.671 0.950 -0.018 0.034 3644 0.115 0.603 0.870
smri_thick_cdk_insulalh Cortical thickness lh-insula C-Section 0.046 0.032 3371 0.130 0.150 0.365 -0.049 0.031 3644 0.116 0.112 0.304
smri_thick_cdk_insulalh Cortical thickness lh-insula Gestational Age -0.040 0.047 3371 0.131 0.402 0.673 -0.022 0.044 3644 0.116 0.612 0.800
smri_thick_cdk_insulalh Cortical thickness lh-insula Birth weight -0.068 0.042 3371 0.132 0.110 0.233 -0.134 0.042 3644 0.119 0.001 0.021
smri_thick_cdk_insulalh Cortical thickness lh-insula Tobacco use 0.069 0.049 3371 0.131 0.155 0.660 0.030 0.047 3644 0.116 0.527 0.889
smri_thick_cdk_insulalh Cortical thickness lh-insula Alcohol use 0.011 0.035 3371 0.131 0.761 0.955 0.001 0.034 3644 0.115 0.981 0.997
smri_thick_cdk_insulalh Cortical thickness lh-insula Marijuana use 0.035 0.067 3371 0.130 0.604 0.985 0.006 0.067 3644 0.115 0.930 0.985
smri_thick_cdk_insulalh Cortical thickness lh-insula Pregnancy complications 0.036 0.031 3371 0.131 0.233 0.757 0.015 0.030 3644 0.115 0.610 0.847
smri_thick_cdk_insulalh Cortical thickness lh-insula Birth complications 0.035 0.034 3371 0.130 0.303 0.811 0.042 0.032 3644 0.115 0.182 0.610
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Unplanned pregnancy -0.007 0.034 3371 0.300 0.825 0.950 0.017 0.033 3644 0.310 0.601 0.870
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus C-Section -0.036 0.031 3371 0.301 0.252 0.563 -0.061 0.030 3644 0.310 0.040 0.160
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Gestational Age -0.135 0.045 3371 0.302 0.003 0.029 -0.076 0.042 3644 0.310 0.071 0.228
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Birth weight -0.089 0.042 3371 0.301 0.032 0.108 -0.074 0.041 3644 0.310 0.070 0.199
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Tobacco use 0.030 0.048 3371 0.300 0.524 0.829 -0.009 0.045 3644 0.309 0.839 0.995
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Alcohol use 0.028 0.034 3371 0.300 0.414 0.955 -0.029 0.033 3644 0.309 0.370 0.900
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Marijuana use -0.023 0.066 3371 0.300 0.726 0.985 -0.059 0.065 3644 0.310 0.369 0.985
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Pregnancy complications -0.040 0.030 3371 0.301 0.183 0.730 0.037 0.029 3644 0.310 0.200 0.588
smri_thick_cdk_banksstsrh Cortical thickness rh-Banks of Superior Temporal Sulcus Birth complications -0.028 0.033 3371 0.301 0.396 0.811 -0.067 0.031 3644 0.311 0.029 0.339
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Unplanned pregnancy -0.003 0.039 3371 0.054 0.932 0.960 0.043 0.038 3644 0.052 0.259 0.804
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate C-Section 0.027 0.037 3371 0.055 0.465 0.738 0.043 0.035 3644 0.052 0.216 0.445
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Gestational Age 0.000 0.053 3371 0.054 0.997 0.997 0.132 0.050 3644 0.054 0.008 0.082
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Birth weight 0.154 0.048 3371 0.057 0.001 0.008 0.031 0.048 3644 0.052 0.513 0.727
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Tobacco use 0.078 0.055 3371 0.055 0.163 0.660 0.036 0.053 3644 0.052 0.496 0.889
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Alcohol use 0.010 0.039 3371 0.054 0.797 0.955 -0.026 0.038 3644 0.052 0.502 0.996
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Marijuana use -0.060 0.076 3371 0.055 0.434 0.985 -0.056 0.076 3644 0.052 0.465 0.985
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Pregnancy complications -0.031 0.035 3371 0.054 0.379 0.802 0.098 0.034 3644 0.055 0.004 0.109
smri_thick_cdk_cdacaterh Cortical thickness rh-caudalanteriorcingulate Birth complications -0.025 0.038 3371 0.054 0.514 0.813 0.068 0.036 3644 0.053 0.058 0.339
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Unplanned pregnancy -0.005 0.029 3371 0.473 0.858 0.950 0.048 0.028 3644 0.500 0.081 0.755
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal C-Section 0.002 0.027 3371 0.472 0.945 0.974 -0.006 0.025 3644 0.500 0.803 0.972
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Gestational Age -0.076 0.040 3371 0.474 0.058 0.212 -0.065 0.036 3644 0.501 0.074 0.228
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Birth weight 0.010 0.036 3371 0.472 0.790 0.826 -0.039 0.034 3644 0.500 0.259 0.441
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Tobacco use -0.069 0.042 3371 0.473 0.098 0.660 0.009 0.038 3644 0.500 0.806 0.995
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Alcohol use -0.047 0.029 3371 0.472 0.108 0.917 -0.050 0.028 3644 0.500 0.072 0.890
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Marijuana use -0.081 0.057 3371 0.473 0.153 0.915 -0.022 0.055 3644 0.500 0.693 0.985
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Pregnancy complications -0.016 0.026 3371 0.473 0.534 0.850 0.015 0.025 3644 0.500 0.529 0.840
smri_thick_cdk_cdmdfrrh Cortical thickness rh-caudalmiddlefrontal Birth complications -0.023 0.029 3371 0.473 0.423 0.811 -0.047 0.026 3644 0.501 0.067 0.339
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Unplanned pregnancy 0.021 0.033 3371 0.304 0.534 0.950 -0.035 0.032 3644 0.306 0.271 0.804
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus C-Section -0.034 0.031 3371 0.305 0.276 0.568 -0.001 0.029 3644 0.306 0.977 0.980
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Gestational Age 0.000 0.045 3371 0.304 0.992 0.997 -0.035 0.042 3644 0.306 0.404 0.660
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Birth weight 0.014 0.041 3371 0.304 0.732 0.794 0.017 0.040 3644 0.306 0.664 0.805
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Tobacco use 0.050 0.047 3371 0.304 0.286 0.787 0.116 0.044 3644 0.307 0.009 0.151
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Alcohol use 0.017 0.033 3371 0.304 0.609 0.955 0.078 0.032 3644 0.306 0.015 0.514
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Marijuana use 0.029 0.064 3371 0.304 0.650 0.985 0.104 0.064 3644 0.306 0.103 0.985
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Pregnancy complications 0.005 0.029 3371 0.304 0.854 0.958 -0.046 0.028 3644 0.306 0.103 0.502
smri_thick_cdk_cuneusrh Cortical thickness rh-cuneus Birth complications -0.057 0.032 3371 0.305 0.075 0.811 -0.082 0.030 3644 0.306 0.006 0.339
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Unplanned pregnancy 0.066 0.039 3371 0.057 0.088 0.950 -0.075 0.038 3644 0.074 0.046 0.755
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal C-Section -0.016 0.036 3371 0.056 0.647 0.823 -0.076 0.034 3644 0.075 0.025 0.123
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Gestational Age 0.065 0.053 3371 0.056 0.212 0.516 -0.007 0.049 3644 0.073 0.886 0.960
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Birth weight 0.058 0.047 3371 0.056 0.225 0.382 0.079 0.047 3644 0.073 0.093 0.234
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Tobacco use 0.076 0.055 3371 0.056 0.165 0.660 -0.065 0.052 3644 0.073 0.211 0.643
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Alcohol use 0.056 0.039 3371 0.056 0.146 0.955 -0.045 0.038 3644 0.073 0.230 0.890
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Marijuana use 0.001 0.075 3371 0.056 0.992 0.992 0.118 0.075 3644 0.073 0.112 0.985
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Pregnancy complications 0.035 0.034 3371 0.056 0.300 0.759 0.042 0.033 3644 0.073 0.207 0.588
smri_thick_cdk_ehinalrh Cortical thickness rh-entorhinal Birth complications 0.026 0.038 3371 0.056 0.481 0.811 0.047 0.035 3644 0.073 0.185 0.610
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Unplanned pregnancy -0.024 0.028 3371 0.522 0.391 0.950 -0.013 0.027 3644 0.527 0.627 0.870
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform C-Section -0.012 0.026 3371 0.522 0.655 0.823 0.002 0.024 3644 0.527 0.928 0.980
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Gestational Age 0.008 0.037 3371 0.522 0.822 0.931 0.036 0.034 3644 0.527 0.290 0.580
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Birth weight 0.043 0.034 3371 0.522 0.214 0.379 0.002 0.034 3644 0.527 0.959 0.977
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Tobacco use -0.015 0.040 3371 0.522 0.707 0.907 0.023 0.037 3644 0.527 0.539 0.889
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Alcohol use 0.007 0.028 3371 0.522 0.797 0.955 0.013 0.027 3644 0.527 0.625 0.996
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Marijuana use -0.030 0.054 3371 0.522 0.583 0.985 0.028 0.054 3644 0.527 0.607 0.985
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Pregnancy complications 0.019 0.025 3371 0.522 0.451 0.802 0.014 0.024 3644 0.527 0.571 0.840
smri_thick_cdk_fusiformrh Cortical thickness rh-fusiform Birth complications 0.035 0.027 3371 0.522 0.200 0.811 0.050 0.025 3644 0.527 0.051 0.339
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Unplanned pregnancy 0.022 0.022 3371 0.663 0.327 0.950 0.005 0.021 3644 0.677 0.824 0.889
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal C-Section 0.015 0.021 3371 0.663 0.466 0.738 0.011 0.019 3644 0.677 0.571 0.802
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Gestational Age -0.034 0.030 3371 0.663 0.254 0.526 -0.023 0.027 3644 0.676 0.408 0.660
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Birth weight -0.097 0.027 3371 0.664 0.000 0.003 -0.004 0.026 3644 0.677 0.884 0.925
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Tobacco use -0.006 0.031 3371 0.663 0.858 0.941 -0.010 0.029 3644 0.677 0.730 0.995
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Alcohol use 0.015 0.022 3371 0.663 0.499 0.955 -0.005 0.021 3644 0.677 0.808 0.996
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Marijuana use 0.032 0.043 3371 0.663 0.452 0.985 0.008 0.041 3644 0.677 0.848 0.985
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Pregnancy complications 0.001 0.020 3371 0.663 0.962 0.962 -0.018 0.018 3644 0.677 0.339 0.720
smri_thick_cdk_ifplrh Cortical thickness rh-inferiorparietal Birth complications -0.011 0.022 3371 0.663 0.605 0.869 -0.040 0.019 3644 0.677 0.041 0.339
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Unplanned pregnancy 0.003 0.028 3371 0.525 0.905 0.950 -0.028 0.027 3644 0.527 0.296 0.804
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal C-Section -0.049 0.026 3371 0.526 0.062 0.231 0.022 0.025 3644 0.527 0.369 0.656
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Gestational Age 0.008 0.037 3371 0.525 0.840 0.937 0.056 0.035 3644 0.527 0.112 0.293
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Birth weight 0.059 0.034 3371 0.526 0.086 0.196 -0.021 0.034 3644 0.527 0.542 0.741
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Tobacco use -0.034 0.040 3371 0.525 0.385 0.792 0.035 0.038 3644 0.527 0.356 0.811
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Alcohol use -0.010 0.028 3371 0.525 0.721 0.955 0.008 0.027 3644 0.527 0.773 0.996
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Marijuana use 0.018 0.054 3371 0.525 0.734 0.985 0.052 0.054 3644 0.527 0.337 0.985
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Pregnancy complications 0.035 0.025 3371 0.526 0.159 0.730 0.009 0.024 3644 0.527 0.709 0.876
smri_thick_cdk_iftmrh Cortical thickness rh-inferiortemporal Birth complications -0.027 0.027 3371 0.525 0.322 0.811 0.007 0.025 3644 0.527 0.784 0.919
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Unplanned pregnancy 0.046 0.040 3371 0.053 0.246 0.950 0.074 0.039 3644 0.048 0.057 0.755
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate C-Section 0.011 0.037 3371 0.053 0.771 0.904 -0.028 0.035 3644 0.046 0.426 0.656
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Gestational Age -0.084 0.054 3371 0.053 0.120 0.340 0.003 0.050 3644 0.047 0.955 0.960
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Birth weight 0.025 0.049 3371 0.053 0.609 0.682 0.015 0.048 3644 0.047 0.754 0.854
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Tobacco use 0.030 0.056 3371 0.053 0.595 0.844 0.075 0.054 3644 0.047 0.160 0.639
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Alcohol use 0.069 0.040 3371 0.054 0.082 0.796 0.014 0.039 3644 0.047 0.727 0.996
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Marijuana use 0.029 0.077 3371 0.053 0.705 0.985 0.006 0.077 3644 0.047 0.940 0.985
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Pregnancy complications -0.005 0.035 3371 0.053 0.881 0.962 0.068 0.034 3644 0.048 0.048 0.324
smri_thick_cdk_ihcaterh Cortical thickness rh-isthmuscingulate Birth complications 0.008 0.039 3371 0.053 0.831 0.911 -0.004 0.036 3644 0.047 0.923 0.988
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Unplanned pregnancy -0.035 0.024 3371 0.589 0.144 0.950 0.035 0.023 3644 0.611 0.126 0.755
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital C-Section 0.015 0.022 3371 0.589 0.494 0.747 0.024 0.021 3644 0.612 0.238 0.462
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Gestational Age 0.122 0.032 3371 0.593 0.000 0.005 0.059 0.030 3644 0.613 0.050 0.187
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Birth weight 0.009 0.029 3371 0.589 0.752 0.799 -0.041 0.028 3644 0.611 0.142 0.311
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Tobacco use -0.014 0.033 3371 0.589 0.672 0.907 0.021 0.031 3644 0.611 0.495 0.889
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Alcohol use -0.003 0.024 3371 0.589 0.910 0.998 0.034 0.023 3644 0.611 0.132 0.890
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Marijuana use -0.077 0.046 3371 0.589 0.093 0.915 0.030 0.045 3644 0.611 0.499 0.985
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Pregnancy complications 0.017 0.021 3371 0.589 0.427 0.802 0.007 0.020 3644 0.611 0.744 0.903
smri_thick_cdk_loccrh Cortical thickness rh-lateraloccipital Birth complications 0.016 0.023 3371 0.589 0.500 0.811 0.016 0.021 3644 0.612 0.439 0.771
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Unplanned pregnancy 0.029 0.031 3371 0.228 0.347 0.950 -0.048 0.031 3644 0.208 0.118 0.755
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal C-Section 0.042 0.029 3371 0.228 0.148 0.365 0.062 0.028 3644 0.209 0.025 0.123
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Gestational Age 0.006 0.042 3371 0.228 0.889 0.967 0.083 0.040 3644 0.208 0.038 0.169
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Birth weight 0.128 0.038 3371 0.228 0.001 0.006 0.083 0.038 3644 0.208 0.029 0.124
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Tobacco use -0.026 0.044 3371 0.228 0.549 0.836 -0.025 0.042 3644 0.208 0.549 0.889
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Alcohol use -0.002 0.031 3371 0.228 0.942 0.999 0.010 0.031 3644 0.208 0.732 0.996
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Marijuana use -0.001 0.060 3371 0.228 0.992 0.992 -0.017 0.061 3644 0.208 0.778 0.985
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Pregnancy complications 0.007 0.027 3371 0.228 0.808 0.958 0.062 0.027 3644 0.209 0.023 0.256
smri_thick_cdk_lobfrrh Cortical thickness rh-lateralorbitofrontal Birth complications -0.012 0.030 3371 0.228 0.697 0.869 0.058 0.029 3644 0.209 0.043 0.339
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Unplanned pregnancy -0.038 0.031 3371 0.195 0.222 0.950 -0.054 0.031 3644 0.174 0.081 0.755
smri_thick_cdk_lingualrh Cortical thickness rh-lingual C-Section 0.031 0.029 3371 0.194 0.286 0.573 0.012 0.028 3644 0.175 0.683 0.893
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Gestational Age 0.056 0.043 3371 0.193 0.196 0.514 -0.006 0.041 3644 0.175 0.877 0.960
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Birth weight -0.062 0.038 3371 0.196 0.108 0.233 -0.113 0.038 3644 0.177 0.003 0.028
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Tobacco use 0.013 0.044 3371 0.195 0.769 0.925 0.000 0.043 3644 0.175 0.994 1.000
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Alcohol use 0.000 0.032 3371 0.195 0.993 0.999 0.013 0.031 3644 0.175 0.667 0.996
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Marijuana use -0.058 0.061 3371 0.195 0.342 0.915 0.022 0.061 3644 0.175 0.718 0.985
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Pregnancy complications 0.002 0.028 3371 0.195 0.951 0.962 0.022 0.027 3644 0.175 0.431 0.770
smri_thick_cdk_lingualrh Cortical thickness rh-lingual Birth complications 0.027 0.031 3371 0.194 0.378 0.811 0.002 0.029 3644 0.175 0.949 0.993
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Unplanned pregnancy -0.008 0.035 3371 0.101 0.817 0.950 0.036 0.033 3644 0.139 0.271 0.804
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal C-Section 0.072 0.032 3371 0.102 0.024 0.166 0.101 0.030 3644 0.141 0.001 0.022
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Gestational Age 0.148 0.046 3371 0.104 0.001 0.020 0.158 0.043 3644 0.140 0.000 0.005
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Birth weight 0.158 0.042 3371 0.103 0.000 0.002 0.168 0.041 3644 0.142 0.000 0.002
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Tobacco use 0.004 0.049 3371 0.101 0.940 0.952 0.035 0.045 3644 0.138 0.443 0.887
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Alcohol use -0.014 0.035 3371 0.101 0.683 0.955 0.013 0.033 3644 0.138 0.690 0.996
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Marijuana use 0.044 0.067 3371 0.101 0.509 0.985 0.024 0.065 3644 0.138 0.708 0.985
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Pregnancy complications 0.048 0.030 3371 0.101 0.117 0.730 0.059 0.029 3644 0.139 0.041 0.312
smri_thick_cdk_mobfrrh Cortical thickness rh-medialorbitofrontal Birth complications 0.048 0.034 3371 0.101 0.153 0.811 0.055 0.031 3644 0.139 0.070 0.339
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Unplanned pregnancy -0.016 0.025 3371 0.540 0.516 0.950 -0.014 0.024 3644 0.544 0.567 0.870
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal C-Section -0.072 0.023 3371 0.541 0.002 0.038 -0.064 0.022 3644 0.544 0.004 0.056
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Gestational Age -0.080 0.034 3371 0.540 0.019 0.118 -0.068 0.032 3644 0.543 0.035 0.169
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Birth weight -0.123 0.031 3371 0.541 0.000 0.001 -0.089 0.030 3644 0.544 0.003 0.028
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Tobacco use -0.013 0.036 3371 0.540 0.705 0.907 0.006 0.034 3644 0.544 0.856 0.995
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Alcohol use 0.057 0.025 3371 0.540 0.025 0.659 0.002 0.024 3644 0.543 0.924 0.996
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Marijuana use 0.069 0.049 3371 0.540 0.160 0.915 0.047 0.048 3644 0.544 0.330 0.985
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Pregnancy complications -0.042 0.022 3371 0.540 0.059 0.671 -0.024 0.022 3644 0.544 0.268 0.675
smri_thick_cdk_mdtmrh Cortical thickness rh-middletemporal Birth complications -0.043 0.025 3371 0.540 0.080 0.811 -0.021 0.023 3644 0.544 0.360 0.749
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Unplanned pregnancy 0.005 0.038 3371 0.125 0.888 0.950 0.010 0.037 3644 0.142 0.781 0.885
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal C-Section 0.098 0.035 3371 0.127 0.005 0.061 0.028 0.033 3644 0.143 0.398 0.656
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Gestational Age 0.048 0.051 3371 0.125 0.343 0.630 -0.040 0.048 3644 0.142 0.399 0.660
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Birth weight 0.040 0.046 3371 0.125 0.388 0.507 -0.013 0.045 3644 0.142 0.768 0.856
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Tobacco use -0.081 0.054 3371 0.126 0.130 0.660 -0.113 0.051 3644 0.143 0.026 0.298
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Alcohol use -0.023 0.038 3371 0.125 0.548 0.955 0.007 0.037 3644 0.142 0.856 0.996
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Marijuana use 0.081 0.073 3371 0.125 0.271 0.915 -0.034 0.073 3644 0.142 0.639 0.985
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Pregnancy complications 0.029 0.033 3371 0.125 0.391 0.802 -0.029 0.032 3644 0.142 0.371 0.742
smri_thick_cdk_parahpalrh Cortical thickness rh-parahippocampal Birth complications -0.004 0.037 3371 0.125 0.904 0.945 0.000 0.034 3644 0.142 0.990 0.995
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Unplanned pregnancy 0.013 0.030 3371 0.435 0.665 0.950 0.031 0.029 3644 0.431 0.280 0.804
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral C-Section 0.028 0.028 3371 0.435 0.315 0.595 0.003 0.026 3644 0.430 0.902 0.974
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Gestational Age -0.027 0.040 3371 0.435 0.499 0.722 -0.003 0.038 3644 0.430 0.937 0.960
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Birth weight 0.002 0.037 3371 0.435 0.961 0.976 -0.066 0.036 3644 0.431 0.064 0.194
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Tobacco use -0.009 0.042 3371 0.435 0.829 0.925 -0.057 0.040 3644 0.430 0.154 0.639
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Alcohol use -0.054 0.030 3371 0.435 0.069 0.785 -0.011 0.029 3644 0.430 0.693 0.996
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Marijuana use -0.015 0.058 3371 0.435 0.798 0.985 0.012 0.057 3644 0.430 0.836 0.985
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Pregnancy complications -0.001 0.026 3371 0.435 0.958 0.962 -0.041 0.025 3644 0.430 0.111 0.505
smri_thick_cdk_paracnrh Cortical thickness rh-paracentral Birth complications 0.034 0.029 3371 0.435 0.241 0.811 -0.016 0.027 3644 0.430 0.556 0.823
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Unplanned pregnancy 0.016 0.031 3371 0.404 0.613 0.950 0.044 0.031 3644 0.399 0.150 0.755
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis C-Section 0.012 0.029 3371 0.404 0.666 0.823 -0.024 0.028 3644 0.398 0.387 0.656
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Gestational Age 0.029 0.041 3371 0.404 0.480 0.722 0.029 0.038 3644 0.398 0.453 0.711
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Birth weight 0.043 0.038 3371 0.404 0.262 0.396 -0.037 0.038 3644 0.399 0.330 0.527
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Tobacco use -0.032 0.044 3371 0.404 0.472 0.813 0.050 0.042 3644 0.399 0.236 0.643
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Alcohol use -0.017 0.031 3371 0.404 0.576 0.955 0.013 0.030 3644 0.398 0.662 0.996
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Marijuana use -0.015 0.061 3371 0.404 0.800 0.985 0.038 0.061 3644 0.398 0.527 0.985
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Pregnancy complications 0.054 0.028 3371 0.405 0.050 0.671 0.033 0.027 3644 0.398 0.218 0.592
smri_thick_cdk_parsopcrh Cortical thickness rh-parsopercularis Birth complications 0.021 0.031 3371 0.404 0.499 0.811 0.026 0.029 3644 0.398 0.367 0.749
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Unplanned pregnancy -0.008 0.034 3371 0.291 0.823 0.950 -0.056 0.034 3644 0.244 0.097 0.755
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis C-Section -0.053 0.031 3371 0.293 0.094 0.273 -0.029 0.031 3644 0.244 0.350 0.648
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Gestational Age -0.093 0.045 3371 0.293 0.040 0.178 -0.079 0.043 3644 0.246 0.068 0.228
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Birth weight 0.061 0.042 3371 0.291 0.140 0.273 -0.017 0.042 3644 0.244 0.683 0.805
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Tobacco use -0.046 0.048 3371 0.292 0.339 0.787 0.018 0.046 3644 0.243 0.697 0.995
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Alcohol use 0.001 0.034 3371 0.291 0.974 0.999 -0.018 0.034 3644 0.243 0.588 0.996
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Marijuana use -0.039 0.066 3371 0.291 0.557 0.985 0.010 0.067 3644 0.243 0.887 0.985
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Pregnancy complications 0.002 0.030 3371 0.291 0.936 0.962 -0.003 0.030 3644 0.243 0.914 0.969
smri_thick_cdk_parsobisrh Cortical thickness rh-parsorbitalis Birth complications -0.026 0.033 3371 0.292 0.437 0.811 -0.044 0.032 3644 0.244 0.162 0.610
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Unplanned pregnancy 0.001 0.029 3371 0.454 0.982 0.982 -0.006 0.028 3644 0.463 0.836 0.889
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis C-Section -0.057 0.027 3371 0.455 0.033 0.174 -0.084 0.025 3644 0.464 0.001 0.022
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Gestational Age -0.033 0.039 3371 0.454 0.395 0.673 -0.056 0.036 3644 0.463 0.118 0.298
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Birth weight 0.042 0.036 3371 0.454 0.240 0.396 0.044 0.035 3644 0.463 0.210 0.406
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Tobacco use 0.040 0.041 3371 0.454 0.324 0.787 0.017 0.039 3644 0.462 0.666 0.993
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Alcohol use 0.063 0.029 3371 0.455 0.029 0.659 -0.001 0.028 3644 0.463 0.969 0.997
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Marijuana use 0.168 0.056 3371 0.456 0.003 0.192 -0.031 0.056 3644 0.463 0.577 0.985
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Pregnancy complications 0.008 0.026 3371 0.454 0.749 0.935 -0.001 0.025 3644 0.463 0.961 0.969
smri_thick_cdk_parstgrisrh Cortical thickness rh-parstriangularis Birth complications -0.026 0.028 3371 0.454 0.365 0.811 -0.009 0.026 3644 0.463 0.734 0.908
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Unplanned pregnancy -0.039 0.035 3371 0.171 0.257 0.950 -0.053 0.035 3644 0.155 0.129 0.755
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine C-Section 0.037 0.032 3371 0.172 0.257 0.563 0.079 0.031 3644 0.155 0.012 0.088
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Gestational Age 0.043 0.047 3371 0.171 0.366 0.655 -0.010 0.046 3644 0.154 0.833 0.960
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Birth weight 0.024 0.043 3371 0.172 0.567 0.653 -0.076 0.043 3644 0.155 0.074 0.202
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Tobacco use 0.015 0.049 3371 0.171 0.755 0.925 0.058 0.048 3644 0.154 0.228 0.643
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Alcohol use -0.018 0.035 3371 0.171 0.607 0.955 -0.027 0.035 3644 0.154 0.430 0.974
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Marijuana use -0.132 0.067 3371 0.173 0.049 0.831 -0.006 0.069 3644 0.154 0.927 0.985
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Pregnancy complications 0.035 0.031 3371 0.171 0.248 0.759 0.019 0.031 3644 0.154 0.546 0.840
smri_thick_cdk_periccrh Cortical thickness rh-pericalcarine Birth complications -0.011 0.034 3371 0.171 0.735 0.869 -0.061 0.032 3644 0.154 0.057 0.339
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Unplanned pregnancy -0.022 0.030 3371 0.447 0.462 0.950 0.027 0.028 3644 0.478 0.334 0.870
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral C-Section -0.014 0.028 3371 0.447 0.606 0.823 0.004 0.025 3644 0.478 0.879 0.974
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Gestational Age -0.048 0.041 3371 0.447 0.240 0.526 0.003 0.036 3644 0.478 0.938 0.960
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Birth weight -0.133 0.037 3371 0.449 0.000 0.003 -0.081 0.035 3644 0.479 0.020 0.092
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Tobacco use 0.016 0.042 3371 0.447 0.699 0.907 -0.044 0.038 3644 0.478 0.251 0.657
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Alcohol use -0.007 0.030 3371 0.447 0.817 0.955 -0.016 0.028 3644 0.478 0.555 0.996
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Marijuana use 0.004 0.058 3371 0.447 0.947 0.992 -0.059 0.055 3644 0.478 0.282 0.985
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Pregnancy complications -0.045 0.027 3371 0.447 0.092 0.730 -0.006 0.025 3644 0.478 0.816 0.954
smri_thick_cdk_postcnrh Cortical thickness rh-postcentral Birth complications 0.045 0.029 3371 0.447 0.127 0.811 0.003 0.026 3644 0.478 0.915 0.988
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Unplanned pregnancy 0.041 0.038 3371 0.103 0.282 0.950 0.056 0.037 3644 0.102 0.137 0.755
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate C-Section 0.008 0.035 3371 0.103 0.812 0.921 -0.024 0.034 3644 0.101 0.476 0.703
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Gestational Age -0.050 0.052 3371 0.103 0.337 0.630 0.104 0.048 3644 0.101 0.032 0.169
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Birth weight 0.007 0.047 3371 0.103 0.880 0.907 0.073 0.046 3644 0.101 0.115 0.262
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Tobacco use 0.054 0.054 3371 0.103 0.317 0.787 -0.010 0.052 3644 0.101 0.845 0.995
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Alcohol use 0.026 0.038 3371 0.103 0.500 0.955 0.000 0.037 3644 0.101 0.997 0.997
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Marijuana use 0.148 0.074 3371 0.104 0.045 0.831 0.061 0.074 3644 0.101 0.409 0.985
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Pregnancy complications -0.036 0.034 3371 0.103 0.279 0.759 0.047 0.033 3644 0.101 0.151 0.540
smri_thick_cdk_ptcaterh Cortical thickness rh-posteriorcingulate Birth complications -0.023 0.037 3371 0.103 0.530 0.819 0.067 0.035 3644 0.101 0.055 0.339
smri_thick_cdk_precnrh Cortical thickness rh-precentral Unplanned pregnancy 0.032 0.027 3371 0.554 0.245 0.950 0.018 0.026 3644 0.590 0.492 0.870
smri_thick_cdk_precnrh Cortical thickness rh-precentral C-Section 0.012 0.025 3371 0.553 0.634 0.823 0.004 0.023 3644 0.590 0.874 0.974
smri_thick_cdk_precnrh Cortical thickness rh-precentral Gestational Age -0.030 0.036 3371 0.554 0.405 0.673 -0.020 0.033 3644 0.590 0.555 0.755
smri_thick_cdk_precnrh Cortical thickness rh-precentral Birth weight -0.044 0.033 3371 0.554 0.190 0.358 -0.028 0.032 3644 0.590 0.376 0.568
smri_thick_cdk_precnrh Cortical thickness rh-precentral Tobacco use -0.075 0.039 3371 0.554 0.052 0.508 -0.034 0.035 3644 0.591 0.332 0.811
smri_thick_cdk_precnrh Cortical thickness rh-precentral Alcohol use -0.023 0.027 3371 0.554 0.391 0.955 -0.051 0.026 3644 0.591 0.048 0.816
smri_thick_cdk_precnrh Cortical thickness rh-precentral Marijuana use -0.029 0.053 3371 0.553 0.581 0.985 -0.004 0.051 3644 0.590 0.930 0.985
smri_thick_cdk_precnrh Cortical thickness rh-precentral Pregnancy complications 0.025 0.024 3371 0.554 0.296 0.759 0.001 0.023 3644 0.590 0.969 0.969
smri_thick_cdk_precnrh Cortical thickness rh-precentral Birth complications 0.013 0.027 3371 0.554 0.629 0.869 -0.043 0.024 3644 0.591 0.070 0.339
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Unplanned pregnancy 0.030 0.027 3371 0.509 0.261 0.950 0.016 0.027 3644 0.480 0.550 0.870
smri_thick_cdk_pcrh Cortical thickness rh-precuneus C-Section -0.042 0.025 3371 0.509 0.096 0.273 0.001 0.025 3644 0.480 0.980 0.980
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Gestational Age 0.005 0.037 3371 0.508 0.896 0.967 0.018 0.036 3644 0.480 0.605 0.800
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Birth weight -0.029 0.033 3371 0.509 0.387 0.507 0.002 0.034 3644 0.480 0.962 0.977
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Tobacco use -0.060 0.038 3371 0.509 0.114 0.660 0.051 0.038 3644 0.480 0.176 0.643
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Alcohol use -0.021 0.027 3371 0.508 0.442 0.955 0.033 0.027 3644 0.480 0.225 0.890
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Marijuana use 0.054 0.052 3371 0.509 0.302 0.915 0.040 0.054 3644 0.480 0.456 0.985
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Pregnancy complications -0.006 0.024 3371 0.508 0.787 0.956 -0.005 0.024 3644 0.480 0.842 0.954
smri_thick_cdk_pcrh Cortical thickness rh-precuneus Birth complications -0.028 0.026 3371 0.509 0.283 0.811 -0.029 0.025 3644 0.480 0.259 0.749
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Unplanned pregnancy -0.014 0.037 3371 0.000 0.703 0.950 0.051 0.036 3644 -0.004 0.156 0.755
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate C-Section -0.006 0.035 3371 0.000 0.868 0.937 0.051 0.033 3644 -0.005 0.116 0.304
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Gestational Age 0.021 0.051 3371 0.000 0.672 0.846 0.109 0.047 3644 -0.007 0.019 0.130
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Birth weight 0.070 0.046 3371 0.000 0.126 0.260 0.059 0.045 3644 -0.005 0.182 0.376
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Tobacco use -0.003 0.052 3371 0.000 0.952 0.952 -0.014 0.049 3644 -0.005 0.783 0.995
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Alcohol use 0.000 0.037 3371 0.000 0.996 0.999 -0.003 0.036 3644 -0.005 0.938 0.996
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Marijuana use -0.105 0.072 3371 0.001 0.144 0.915 -0.063 0.071 3644 -0.005 0.379 0.985
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Pregnancy complications -0.002 0.033 3371 0.000 0.961 0.962 0.074 0.032 3644 -0.004 0.020 0.256
smri_thick_cdk_rracaterh Cortical thickness rh-rostralanteriorcingulate Birth complications 0.027 0.036 3371 0.000 0.460 0.811 0.047 0.033 3644 -0.005 0.164 0.610
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Unplanned pregnancy 0.001 0.024 3371 0.602 0.977 0.982 0.011 0.024 3644 0.587 0.653 0.880
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal C-Section 0.000 0.023 3371 0.602 0.995 0.995 -0.042 0.022 3644 0.587 0.058 0.197
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Gestational Age -0.040 0.033 3371 0.602 0.227 0.521 -0.002 0.032 3644 0.587 0.960 0.960
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Birth weight 0.097 0.030 3371 0.603 0.001 0.008 0.079 0.030 3644 0.588 0.008 0.042
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Tobacco use -0.034 0.035 3371 0.602 0.326 0.787 0.014 0.033 3644 0.587 0.672 0.993
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Alcohol use -0.029 0.025 3371 0.602 0.232 0.955 0.007 0.024 3644 0.587 0.758 0.996
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Marijuana use -0.011 0.047 3371 0.602 0.815 0.985 0.013 0.048 3644 0.587 0.791 0.985
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Pregnancy complications -0.004 0.022 3371 0.602 0.847 0.958 -0.002 0.021 3644 0.587 0.913 0.969
smri_thick_cdk_rrmdfrrh Cortical thickness rh-rostralmiddlefrontal Birth complications 0.010 0.024 3371 0.602 0.667 0.869 -0.024 0.022 3644 0.587 0.293 0.749
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Unplanned pregnancy 0.007 0.025 3371 0.580 0.785 0.950 0.006 0.023 3644 0.577 0.802 0.889
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal C-Section 0.049 0.023 3371 0.580 0.033 0.174 0.010 0.021 3644 0.577 0.635 0.846
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Gestational Age -0.054 0.034 3371 0.580 0.111 0.332 -0.002 0.031 3644 0.577 0.958 0.960
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Birth weight 0.145 0.030 3371 0.581 0.000 0.000 0.091 0.029 3644 0.578 0.002 0.021
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Tobacco use -0.026 0.035 3371 0.580 0.452 0.809 0.007 0.032 3644 0.577 0.826 0.995
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Alcohol use -0.007 0.025 3371 0.580 0.783 0.955 -0.026 0.023 3644 0.577 0.262 0.890
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Marijuana use -0.064 0.048 3371 0.580 0.179 0.915 0.033 0.047 3644 0.578 0.477 0.985
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Pregnancy complications -0.010 0.022 3371 0.580 0.644 0.935 -0.008 0.021 3644 0.577 0.705 0.876
smri_thick_cdk_sufrrh Cortical thickness rh-superiorfrontal Birth complications -0.032 0.024 3371 0.580 0.185 0.811 -0.021 0.022 3644 0.578 0.344 0.749
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Unplanned pregnancy 0.019 0.023 3371 0.661 0.425 0.950 -0.018 0.023 3644 0.671 0.428 0.870
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal C-Section 0.016 0.022 3371 0.661 0.467 0.738 0.001 0.021 3644 0.670 0.953 0.980
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Gestational Age 0.059 0.032 3371 0.661 0.062 0.212 -0.002 0.030 3644 0.670 0.936 0.960
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Birth weight -0.025 0.029 3371 0.661 0.387 0.507 -0.027 0.028 3644 0.671 0.333 0.527
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Tobacco use -0.023 0.033 3371 0.661 0.492 0.816 0.054 0.031 3644 0.671 0.081 0.609
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Alcohol use -0.057 0.023 3371 0.662 0.014 0.659 0.022 0.023 3644 0.671 0.339 0.900
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Marijuana use 0.022 0.045 3371 0.661 0.623 0.985 0.059 0.045 3644 0.671 0.183 0.985
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Pregnancy complications -0.024 0.021 3371 0.661 0.234 0.757 -0.065 0.020 3644 0.672 0.001 0.075
smri_thick_cdk_suplrh Cortical thickness rh-superiorparietal Birth complications 0.006 0.023 3371 0.661 0.793 0.884 -0.019 0.021 3644 0.671 0.358 0.749
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Unplanned pregnancy 0.022 0.027 3371 0.562 0.419 0.950 -0.006 0.027 3644 0.547 0.816 0.889
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal C-Section -0.052 0.025 3371 0.562 0.036 0.174 -0.020 0.024 3644 0.547 0.400 0.656
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Gestational Age 0.010 0.036 3371 0.562 0.785 0.905 0.021 0.035 3644 0.547 0.544 0.755
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Birth weight 0.091 0.033 3371 0.562 0.005 0.026 0.038 0.033 3644 0.547 0.253 0.441
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Tobacco use 0.059 0.038 3371 0.562 0.120 0.660 -0.024 0.037 3644 0.547 0.511 0.889
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Alcohol use 0.018 0.027 3371 0.562 0.512 0.955 -0.023 0.027 3644 0.547 0.386 0.905
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Marijuana use 0.053 0.052 3371 0.562 0.303 0.915 -0.017 0.053 3644 0.547 0.742 0.985
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Pregnancy complications 0.016 0.024 3371 0.562 0.511 0.848 0.050 0.023 3644 0.548 0.032 0.271
smri_thick_cdk_sutmrh Cortical thickness rh-superiortemporal Birth complications -0.025 0.026 3371 0.562 0.332 0.811 0.020 0.025 3644 0.547 0.423 0.771
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Unplanned pregnancy 0.008 0.023 3371 0.541 0.723 0.950 0.023 0.021 3644 0.575 0.290 0.804
smri_thick_cdk_smrh Cortical thickness rh-supramarginal C-Section 0.010 0.021 3371 0.541 0.646 0.823 0.031 0.019 3644 0.576 0.116 0.304
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Gestational Age 0.010 0.031 3371 0.541 0.739 0.892 0.018 0.028 3644 0.576 0.517 0.748
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Birth weight -0.072 0.028 3371 0.541 0.010 0.040 -0.011 0.027 3644 0.576 0.683 0.805
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Tobacco use 0.018 0.032 3371 0.541 0.578 0.836 -0.004 0.029 3644 0.576 0.887 0.995
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Alcohol use 0.007 0.023 3371 0.541 0.748 0.955 0.023 0.021 3644 0.575 0.284 0.900
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Marijuana use -0.041 0.044 3371 0.541 0.350 0.915 -0.061 0.042 3644 0.576 0.148 0.985
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Pregnancy complications -0.015 0.020 3371 0.541 0.467 0.802 0.010 0.019 3644 0.576 0.600 0.847
smri_thick_cdk_smrh Cortical thickness rh-supramarginal Birth complications -0.007 0.022 3371 0.541 0.755 0.869 -0.022 0.020 3644 0.576 0.282 0.749
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Unplanned pregnancy -0.057 0.037 3371 0.161 0.125 0.950 0.012 0.036 3644 0.156 0.731 0.885
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole C-Section 0.066 0.034 3371 0.162 0.053 0.213 0.077 0.033 3644 0.158 0.018 0.119
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Gestational Age -0.001 0.049 3371 0.160 0.987 0.997 0.097 0.046 3644 0.157 0.034 0.169
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Birth weight 0.199 0.045 3371 0.165 0.000 0.000 0.145 0.045 3644 0.159 0.001 0.021
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Tobacco use 0.057 0.052 3371 0.161 0.279 0.787 0.062 0.050 3644 0.156 0.215 0.643
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Alcohol use 0.008 0.037 3371 0.160 0.836 0.955 -0.004 0.036 3644 0.156 0.921 0.996
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Marijuana use 0.019 0.072 3371 0.160 0.796 0.985 0.044 0.072 3644 0.156 0.538 0.985
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Pregnancy complications 0.010 0.033 3371 0.160 0.756 0.935 0.056 0.032 3644 0.157 0.077 0.401
smri_thick_cdk_frpolerh Cortical thickness rh-frontalpole Birth complications 0.032 0.036 3371 0.161 0.372 0.811 0.032 0.034 3644 0.156 0.350 0.749
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Unplanned pregnancy -0.014 0.036 3371 0.201 0.702 0.950 0.010 0.035 3644 0.192 0.774 0.885
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole C-Section 0.009 0.034 3371 0.200 0.797 0.919 0.050 0.032 3644 0.192 0.121 0.304
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Gestational Age 0.033 0.048 3371 0.201 0.491 0.722 -0.045 0.045 3644 0.192 0.322 0.626
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Birth weight 0.085 0.044 3371 0.201 0.056 0.159 0.117 0.044 3644 0.193 0.008 0.042
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Tobacco use 0.143 0.051 3371 0.203 0.005 0.173 0.085 0.049 3644 0.192 0.080 0.609
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Alcohol use -0.013 0.036 3371 0.201 0.717 0.955 0.032 0.035 3644 0.192 0.357 0.900
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Marijuana use 0.177 0.070 3371 0.202 0.012 0.401 0.085 0.070 3644 0.192 0.224 0.985
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Pregnancy complications 0.047 0.032 3371 0.201 0.141 0.730 -0.017 0.031 3644 0.192 0.581 0.840
smri_thick_cdk_tmpolerh Cortical thickness rh-temporalpole Birth complications -0.025 0.035 3371 0.201 0.485 0.811 0.016 0.033 3644 0.192 0.628 0.854
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Unplanned pregnancy 0.010 0.034 3371 0.147 0.769 0.950 -0.002 0.034 3644 0.117 0.948 0.970
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal C-Section -0.067 0.032 3371 0.150 0.035 0.174 -0.016 0.031 3644 0.118 0.603 0.819
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Gestational Age -0.121 0.046 3371 0.151 0.009 0.076 -0.105 0.044 3644 0.122 0.016 0.130
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Birth weight -0.014 0.042 3371 0.148 0.736 0.794 -0.040 0.042 3644 0.118 0.343 0.530
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Tobacco use 0.157 0.048 3371 0.149 0.001 0.076 -0.040 0.046 3644 0.117 0.387 0.849
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Alcohol use -0.032 0.034 3371 0.147 0.358 0.955 -0.005 0.034 3644 0.117 0.881 0.996
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Marijuana use 0.020 0.066 3371 0.147 0.768 0.985 -0.007 0.067 3644 0.117 0.915 0.985
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Pregnancy complications -0.061 0.030 3371 0.149 0.041 0.671 0.025 0.030 3644 0.117 0.406 0.767
smri_thick_cdk_trvtmrh Cortical thickness rh-transversetemporal Birth complications -0.022 0.033 3371 0.148 0.501 0.811 -0.041 0.031 3644 0.119 0.188 0.610
smri_thick_cdk_insularh Cortical thickness rh-insula Unplanned pregnancy -0.036 0.036 3371 0.193 0.310 0.950 -0.031 0.034 3644 0.191 0.362 0.870
smri_thick_cdk_insularh Cortical thickness rh-insula C-Section 0.000 0.033 3371 0.192 0.988 0.995 -0.011 0.031 3644 0.191 0.718 0.905
smri_thick_cdk_insularh Cortical thickness rh-insula Gestational Age -0.058 0.048 3371 0.193 0.230 0.521 -0.072 0.045 3644 0.192 0.106 0.291
smri_thick_cdk_insularh Cortical thickness rh-insula Birth weight 0.030 0.044 3371 0.192 0.494 0.591 -0.068 0.043 3644 0.191 0.111 0.260
smri_thick_cdk_insularh Cortical thickness rh-insula Tobacco use 0.012 0.050 3371 0.192 0.808 0.925 0.038 0.047 3644 0.191 0.428 0.881
smri_thick_cdk_insularh Cortical thickness rh-insula Alcohol use 0.010 0.036 3371 0.192 0.773 0.955 -0.004 0.034 3644 0.191 0.904 0.996
smri_thick_cdk_insularh Cortical thickness rh-insula Marijuana use -0.010 0.069 3371 0.192 0.880 0.992 -0.005 0.068 3644 0.191 0.940 0.985
smri_thick_cdk_insularh Cortical thickness rh-insula Pregnancy complications 0.023 0.031 3371 0.192 0.472 0.802 -0.026 0.030 3644 0.191 0.385 0.747
smri_thick_cdk_insularh Cortical thickness rh-insula Birth complications -0.001 0.035 3371 0.192 0.967 0.967 0.024 0.032 3644 0.191 0.465 0.771
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Unplanned pregnancy 0.004 0.035 3371 0.241 0.904 0.961 -0.003 0.035 3644 0.206 0.941 0.989
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus C-Section -0.083 0.033 3371 0.243 0.012 0.123 -0.067 0.032 3644 0.208 0.036 0.225
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Gestational Age -0.046 0.047 3371 0.241 0.331 0.549 -0.013 0.045 3644 0.206 0.775 0.943
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Birth weight -0.103 0.044 3371 0.242 0.019 0.140 -0.068 0.044 3644 0.207 0.121 0.516
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Tobacco use -0.045 0.050 3371 0.241 0.368 0.863 0.001 0.049 3644 0.206 0.979 0.993
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Alcohol use -0.003 0.035 3371 0.241 0.937 0.937 0.022 0.035 3644 0.206 0.529 0.995
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Marijuana use -0.122 0.069 3371 0.241 0.076 0.645 -0.046 0.070 3644 0.206 0.512 0.860
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Pregnancy complications -0.002 0.031 3371 0.241 0.941 0.984 -0.022 0.031 3644 0.206 0.473 0.963
smri_area_cdk_banksstslh Cortical area lh-Banks of Superior Temporal Sulcus Birth complications -0.046 0.035 3371 0.241 0.185 0.834 0.013 0.033 3644 0.206 0.700 0.872
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Unplanned pregnancy 0.027 0.034 3371 0.279 0.432 0.961 0.046 0.035 3644 0.242 0.179 0.953
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate C-Section -0.018 0.032 3371 0.279 0.584 0.749 0.043 0.031 3644 0.242 0.166 0.452
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Gestational Age 0.028 0.047 3371 0.279 0.555 0.740 0.033 0.045 3644 0.242 0.459 0.875
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Birth weight 0.005 0.042 3371 0.279 0.902 0.916 -0.007 0.043 3644 0.241 0.868 0.992
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Tobacco use -0.059 0.049 3371 0.279 0.224 0.740 0.054 0.048 3644 0.241 0.255 0.619
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Alcohol use 0.027 0.035 3371 0.279 0.429 0.748 -0.001 0.035 3644 0.241 0.974 0.995
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Marijuana use 0.023 0.067 3371 0.279 0.735 1.000 -0.059 0.068 3644 0.242 0.386 0.860
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Pregnancy complications 0.072 0.030 3371 0.280 0.018 0.201 0.012 0.030 3644 0.241 0.703 0.963
smri_area_cdk_cdacatelh Cortical area lh-caudalanteriorcingulate Birth complications -0.009 0.033 3371 0.279 0.783 0.947 -0.016 0.032 3644 0.241 0.613 0.850
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Unplanned pregnancy -0.007 0.031 3371 0.427 0.819 0.961 -0.036 0.030 3644 0.420 0.239 0.953
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal C-Section 0.032 0.028 3371 0.427 0.255 0.510 0.043 0.027 3644 0.420 0.113 0.405
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Gestational Age 0.064 0.040 3371 0.427 0.114 0.347 0.011 0.038 3644 0.420 0.776 0.943
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Birth weight 0.039 0.038 3371 0.427 0.309 0.489 0.056 0.038 3644 0.420 0.134 0.516
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Tobacco use 0.066 0.044 3371 0.427 0.131 0.740 -0.033 0.041 3644 0.420 0.428 0.809
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Alcohol use 0.017 0.031 3371 0.427 0.588 0.883 -0.041 0.030 3644 0.420 0.167 0.822
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Marijuana use 0.003 0.060 3371 0.427 0.958 1.000 -0.034 0.060 3644 0.420 0.576 0.860
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Pregnancy complications 0.027 0.027 3371 0.427 0.322 0.701 0.005 0.027 3644 0.420 0.864 0.963
smri_area_cdk_cdmdfrlh Cortical area lh-caudalmiddlefrontal Birth complications 0.000 0.030 3371 0.427 0.993 0.993 -0.005 0.028 3644 0.420 0.847 0.959
smri_area_cdk_cuneuslh Cortical area lh-cuneus Unplanned pregnancy 0.004 0.035 3371 0.261 0.920 0.961 -0.020 0.035 3644 0.231 0.571 0.953
smri_area_cdk_cuneuslh Cortical area lh-cuneus C-Section 0.052 0.033 3371 0.262 0.110 0.356 -0.039 0.031 3644 0.231 0.211 0.463
smri_area_cdk_cuneuslh Cortical area lh-cuneus Gestational Age -0.082 0.048 3371 0.260 0.085 0.304 0.057 0.045 3644 0.232 0.210 0.714
smri_area_cdk_cuneuslh Cortical area lh-cuneus Birth weight 0.067 0.043 3371 0.262 0.118 0.389 0.078 0.043 3644 0.232 0.072 0.516
smri_area_cdk_cuneuslh Cortical area lh-cuneus Tobacco use 0.002 0.050 3371 0.261 0.969 0.980 -0.023 0.048 3644 0.231 0.631 0.918
smri_area_cdk_cuneuslh Cortical area lh-cuneus Alcohol use -0.038 0.035 3371 0.261 0.276 0.625 -0.040 0.035 3644 0.231 0.251 0.960
smri_area_cdk_cuneuslh Cortical area lh-cuneus Marijuana use -0.005 0.068 3371 0.261 0.946 1.000 0.030 0.069 3644 0.231 0.666 0.884
smri_area_cdk_cuneuslh Cortical area lh-cuneus Pregnancy complications -0.034 0.031 3371 0.261 0.270 0.686 -0.058 0.031 3644 0.231 0.060 0.701
smri_area_cdk_cuneuslh Cortical area lh-cuneus Birth complications 0.003 0.034 3371 0.261 0.920 0.965 -0.071 0.032 3644 0.232 0.028 0.579
smri_area_cdk_ehinallh Cortical area lh-entorhinal Unplanned pregnancy -0.012 0.037 3371 0.171 0.741 0.961 0.012 0.037 3644 0.147 0.748 0.953
smri_area_cdk_ehinallh Cortical area lh-entorhinal C-Section 0.089 0.034 3371 0.172 0.010 0.123 0.036 0.033 3644 0.147 0.265 0.474
smri_area_cdk_ehinallh Cortical area lh-entorhinal Gestational Age -0.019 0.049 3371 0.171 0.696 0.860 0.021 0.045 3644 0.147 0.638 0.904
smri_area_cdk_ehinallh Cortical area lh-entorhinal Birth weight -0.081 0.046 3371 0.172 0.074 0.316 -0.037 0.045 3644 0.147 0.412 0.609
smri_area_cdk_ehinallh Cortical area lh-entorhinal Tobacco use 0.005 0.052 3371 0.171 0.931 0.980 -0.023 0.050 3644 0.147 0.646 0.918
smri_area_cdk_ehinallh Cortical area lh-entorhinal Alcohol use -0.065 0.037 3371 0.172 0.078 0.527 -0.026 0.036 3644 0.147 0.469 0.995
smri_area_cdk_ehinallh Cortical area lh-entorhinal Marijuana use -0.030 0.072 3371 0.171 0.673 0.995 -0.067 0.073 3644 0.147 0.359 0.860
smri_area_cdk_ehinallh Cortical area lh-entorhinal Pregnancy complications -0.028 0.033 3371 0.172 0.390 0.737 0.008 0.032 3644 0.147 0.810 0.963
smri_area_cdk_ehinallh Cortical area lh-entorhinal Birth complications -0.077 0.036 3371 0.173 0.033 0.745 0.005 0.034 3644 0.147 0.894 0.965
smri_area_cdk_fusiformlh Cortical area lh-fusiform Unplanned pregnancy 0.027 0.030 3371 0.445 0.377 0.961 -0.027 0.030 3644 0.447 0.356 0.953
smri_area_cdk_fusiformlh Cortical area lh-fusiform C-Section -0.025 0.028 3371 0.445 0.382 0.634 -0.016 0.027 3644 0.447 0.546 0.745
smri_area_cdk_fusiformlh Cortical area lh-fusiform Gestational Age -0.085 0.040 3371 0.445 0.036 0.173 -0.052 0.038 3644 0.447 0.175 0.698
smri_area_cdk_fusiformlh Cortical area lh-fusiform Birth weight 0.015 0.037 3371 0.445 0.682 0.773 -0.008 0.037 3644 0.447 0.825 0.987
smri_area_cdk_fusiformlh Cortical area lh-fusiform Tobacco use 0.020 0.043 3371 0.445 0.635 0.958 0.022 0.041 3644 0.447 0.594 0.918
smri_area_cdk_fusiformlh Cortical area lh-fusiform Alcohol use 0.026 0.030 3371 0.445 0.391 0.748 0.021 0.030 3644 0.447 0.479 0.995
smri_area_cdk_fusiformlh Cortical area lh-fusiform Marijuana use -0.051 0.059 3371 0.445 0.385 0.879 0.004 0.059 3644 0.447 0.944 0.987
smri_area_cdk_fusiformlh Cortical area lh-fusiform Pregnancy complications -0.009 0.027 3371 0.445 0.727 0.926 -0.004 0.026 3644 0.447 0.878 0.963
smri_area_cdk_fusiformlh Cortical area lh-fusiform Birth complications -0.050 0.030 3371 0.445 0.091 0.834 -0.045 0.028 3644 0.447 0.101 0.650
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Unplanned pregnancy -0.020 0.030 3371 0.469 0.513 0.961 0.028 0.030 3644 0.430 0.343 0.953
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal C-Section -0.106 0.028 3371 0.472 0.000 0.008 -0.006 0.027 3644 0.430 0.832 0.898
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Gestational Age -0.099 0.040 3371 0.471 0.013 0.106 -0.043 0.039 3644 0.431 0.271 0.747
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Birth weight -0.126 0.036 3371 0.471 0.001 0.017 -0.068 0.037 3644 0.431 0.069 0.516
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Tobacco use -0.042 0.042 3371 0.469 0.325 0.855 -0.019 0.041 3644 0.430 0.645 0.918
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Alcohol use 0.054 0.030 3371 0.470 0.067 0.527 0.008 0.030 3644 0.430 0.787 0.995
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Marijuana use -0.082 0.058 3371 0.470 0.156 0.879 -0.010 0.059 3644 0.430 0.860 0.980
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Pregnancy complications 0.006 0.026 3371 0.469 0.817 0.942 0.034 0.026 3644 0.430 0.201 0.963
smri_area_cdk_ifpllh Cortical area lh-inferiorparietal Birth complications 0.006 0.029 3371 0.469 0.836 0.947 -0.041 0.028 3644 0.431 0.139 0.696
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Unplanned pregnancy -0.003 0.028 3371 0.513 0.923 0.961 0.050 0.028 3644 0.511 0.075 0.953
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal C-Section -0.036 0.026 3371 0.513 0.165 0.433 0.040 0.025 3644 0.511 0.113 0.405
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Gestational Age 0.044 0.038 3371 0.513 0.240 0.456 -0.033 0.035 3644 0.511 0.343 0.842
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Birth weight -0.023 0.035 3371 0.513 0.508 0.639 0.014 0.035 3644 0.510 0.686 0.880
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Tobacco use -0.021 0.040 3371 0.513 0.597 0.958 -0.012 0.038 3644 0.510 0.761 0.922
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Alcohol use -0.004 0.028 3371 0.513 0.899 0.932 0.038 0.028 3644 0.511 0.169 0.822
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Marijuana use 0.031 0.055 3371 0.513 0.579 0.955 -0.050 0.055 3644 0.510 0.366 0.860
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Pregnancy complications -0.009 0.025 3371 0.513 0.722 0.926 0.043 0.025 3644 0.511 0.082 0.701
smri_area_cdk_iftmlh Cortical area lh-inferiortemporal Birth complications -0.030 0.028 3371 0.513 0.285 0.834 -0.025 0.026 3644 0.511 0.333 0.850
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Unplanned pregnancy -0.022 0.033 3371 0.357 0.495 0.961 0.037 0.032 3644 0.364 0.246 0.953
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate C-Section 0.049 0.030 3371 0.357 0.104 0.355 -0.008 0.029 3644 0.364 0.791 0.876
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Gestational Age 0.015 0.044 3371 0.357 0.741 0.884 -0.032 0.041 3644 0.364 0.440 0.875
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Birth weight 0.051 0.040 3371 0.357 0.200 0.467 -0.002 0.040 3644 0.364 0.960 0.992
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Tobacco use 0.006 0.046 3371 0.357 0.900 0.980 0.050 0.044 3644 0.364 0.259 0.619
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Alcohol use -0.048 0.033 3371 0.357 0.139 0.539 0.024 0.032 3644 0.364 0.449 0.995
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Marijuana use 0.006 0.063 3371 0.357 0.924 1.000 0.086 0.063 3644 0.364 0.171 0.631
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Pregnancy complications -0.010 0.029 3371 0.357 0.731 0.926 0.007 0.028 3644 0.364 0.816 0.963
smri_area_cdk_ihcatelh Cortical area lh-isthmuscingulate Birth complications 0.037 0.032 3371 0.357 0.245 0.834 -0.012 0.030 3644 0.364 0.674 0.872
smri_area_cdk_locclh Cortical area lh-lateraloccipital Unplanned pregnancy 0.013 0.030 3371 0.460 0.666 0.961 0.037 0.030 3644 0.417 0.214 0.953
smri_area_cdk_locclh Cortical area lh-lateraloccipital C-Section 0.039 0.028 3371 0.460 0.163 0.433 -0.080 0.027 3644 0.418 0.003 0.084
smri_area_cdk_locclh Cortical area lh-lateraloccipital Gestational Age -0.020 0.041 3371 0.460 0.624 0.802 0.093 0.039 3644 0.417 0.017 0.253
smri_area_cdk_locclh Cortical area lh-lateraloccipital Birth weight 0.095 0.036 3371 0.461 0.009 0.103 0.048 0.037 3644 0.417 0.198 0.529
smri_area_cdk_locclh Cortical area lh-lateraloccipital Tobacco use 0.053 0.042 3371 0.461 0.205 0.740 0.045 0.041 3644 0.417 0.273 0.619
smri_area_cdk_locclh Cortical area lh-lateraloccipital Alcohol use 0.046 0.030 3371 0.461 0.125 0.539 0.063 0.030 3644 0.418 0.034 0.553
smri_area_cdk_locclh Cortical area lh-lateraloccipital Marijuana use 0.212 0.057 3371 0.462 0.000 0.014 0.197 0.059 3644 0.419 0.001 0.059
smri_area_cdk_locclh Cortical area lh-lateraloccipital Pregnancy complications 0.046 0.026 3371 0.461 0.080 0.420 0.009 0.026 3644 0.417 0.742 0.963
smri_area_cdk_locclh Cortical area lh-lateraloccipital Birth complications -0.002 0.029 3371 0.460 0.957 0.986 0.003 0.028 3644 0.417 0.919 0.965
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Unplanned pregnancy 0.021 0.028 3371 0.453 0.452 0.961 -0.007 0.027 3644 0.488 0.799 0.953
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal C-Section -0.086 0.026 3371 0.455 0.001 0.023 -0.029 0.024 3644 0.488 0.236 0.463
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Gestational Age 0.045 0.038 3371 0.454 0.244 0.456 -0.074 0.035 3644 0.488 0.035 0.313
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Birth weight -0.116 0.035 3371 0.454 0.001 0.017 -0.071 0.033 3644 0.488 0.031 0.516
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Tobacco use 0.015 0.040 3371 0.453 0.713 0.958 0.069 0.037 3644 0.487 0.059 0.362
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Alcohol use -0.005 0.028 3371 0.453 0.868 0.932 -0.018 0.027 3644 0.488 0.509 0.995
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Marijuana use 0.069 0.054 3371 0.454 0.204 0.879 0.022 0.052 3644 0.488 0.674 0.884
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Pregnancy complications -0.039 0.025 3371 0.454 0.120 0.512 -0.018 0.023 3644 0.488 0.438 0.963
smri_area_cdk_lobfrlh Cortical area lh-lateralorbitofrontal Birth complications 0.034 0.027 3371 0.454 0.216 0.834 -0.016 0.025 3644 0.488 0.523 0.850
smri_area_cdk_linguallh Cortical area lh-lingual Unplanned pregnancy -0.023 0.035 3371 0.249 0.498 0.961 -0.015 0.033 3644 0.262 0.657 0.953
smri_area_cdk_linguallh Cortical area lh-lingual C-Section -0.042 0.032 3371 0.249 0.194 0.441 -0.040 0.030 3644 0.262 0.190 0.463
smri_area_cdk_linguallh Cortical area lh-lingual Gestational Age -0.179 0.047 3371 0.248 0.000 0.011 0.027 0.044 3644 0.263 0.536 0.875
smri_area_cdk_linguallh Cortical area lh-lingual Birth weight 0.021 0.042 3371 0.249 0.623 0.744 -0.009 0.041 3644 0.262 0.828 0.987
smri_area_cdk_linguallh Cortical area lh-lingual Tobacco use -0.061 0.049 3371 0.249 0.214 0.740 -0.083 0.046 3644 0.263 0.072 0.374
smri_area_cdk_linguallh Cortical area lh-lingual Alcohol use -0.006 0.035 3371 0.249 0.860 0.932 -0.037 0.033 3644 0.263 0.272 0.960
smri_area_cdk_linguallh Cortical area lh-lingual Marijuana use -0.014 0.067 3371 0.249 0.832 1.000 -0.042 0.066 3644 0.262 0.524 0.860
smri_area_cdk_linguallh Cortical area lh-lingual Pregnancy complications -0.031 0.031 3371 0.249 0.304 0.690 0.053 0.029 3644 0.263 0.073 0.701
smri_area_cdk_linguallh Cortical area lh-lingual Birth complications -0.038 0.033 3371 0.249 0.253 0.834 0.012 0.031 3644 0.262 0.705 0.872
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Unplanned pregnancy 0.012 0.031 3371 0.416 0.710 0.961 -0.042 0.030 3644 0.421 0.163 0.953
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal C-Section 0.038 0.029 3371 0.417 0.189 0.441 0.033 0.027 3644 0.421 0.217 0.463
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Gestational Age 0.055 0.041 3371 0.417 0.176 0.412 -0.006 0.038 3644 0.421 0.881 0.982
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Birth weight -0.080 0.038 3371 0.417 0.036 0.221 -0.040 0.037 3644 0.421 0.280 0.570
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Tobacco use 0.133 0.044 3371 0.418 0.002 0.163 -0.052 0.042 3644 0.421 0.212 0.602
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Alcohol use 0.025 0.031 3371 0.416 0.419 0.748 0.031 0.030 3644 0.421 0.297 0.960
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Marijuana use 0.065 0.060 3371 0.416 0.283 0.879 -0.097 0.060 3644 0.421 0.106 0.517
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Pregnancy complications 0.022 0.027 3371 0.416 0.423 0.756 -0.016 0.027 3644 0.421 0.541 0.963
smri_area_cdk_mobfrlh Cortical area lh-medialorbitofrontal Birth complications -0.014 0.030 3371 0.416 0.639 0.871 -0.001 0.028 3644 0.421 0.970 0.987
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Unplanned pregnancy 0.003 0.028 3371 0.534 0.925 0.961 0.006 0.027 3644 0.532 0.830 0.974
smri_area_cdk_mdtmlh Cortical area lh-middletemporal C-Section -0.044 0.026 3371 0.534 0.091 0.327 0.027 0.025 3644 0.531 0.275 0.480
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Gestational Age -0.087 0.038 3371 0.535 0.021 0.146 -0.012 0.035 3644 0.532 0.726 0.939
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Birth weight -0.074 0.034 3371 0.534 0.029 0.200 -0.050 0.034 3644 0.532 0.138 0.516
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Tobacco use 0.070 0.040 3371 0.534 0.080 0.740 0.038 0.038 3644 0.532 0.315 0.669
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Alcohol use 0.041 0.028 3371 0.534 0.146 0.539 0.044 0.027 3644 0.532 0.103 0.638
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Marijuana use 0.002 0.054 3371 0.534 0.977 1.000 -0.071 0.054 3644 0.532 0.190 0.631
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Pregnancy complications 0.011 0.025 3371 0.534 0.644 0.913 0.013 0.024 3644 0.531 0.585 0.963
smri_area_cdk_mdtmlh Cortical area lh-middletemporal Birth complications -0.006 0.027 3371 0.534 0.831 0.947 0.007 0.025 3644 0.531 0.769 0.917
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Unplanned pregnancy -0.038 0.037 3371 0.151 0.315 0.961 -0.002 0.036 3644 0.185 0.946 0.989
smri_area_cdk_parahpallh Cortical area lh-parahippocampal C-Section -0.003 0.035 3371 0.151 0.936 0.976 -0.019 0.032 3644 0.185 0.559 0.745
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Gestational Age -0.060 0.050 3371 0.151 0.234 0.456 0.054 0.046 3644 0.185 0.245 0.747
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Birth weight 0.021 0.046 3371 0.151 0.648 0.747 -0.055 0.045 3644 0.186 0.218 0.529
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Tobacco use -0.026 0.053 3371 0.151 0.624 0.958 0.050 0.050 3644 0.185 0.314 0.669
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Alcohol use 0.011 0.037 3371 0.151 0.765 0.903 -0.033 0.036 3644 0.185 0.363 0.989
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Marijuana use -0.206 0.072 3371 0.153 0.005 0.154 -0.036 0.071 3644 0.185 0.612 0.860
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Pregnancy complications 0.006 0.033 3371 0.151 0.854 0.952 0.013 0.032 3644 0.185 0.681 0.963
smri_area_cdk_parahpallh Cortical area lh-parahippocampal Birth complications -0.037 0.037 3371 0.151 0.317 0.834 0.027 0.033 3644 0.185 0.414 0.850
smri_area_cdk_paracnlh Cortical area lh-paracentral Unplanned pregnancy -0.059 0.035 3371 0.253 0.096 0.961 -0.010 0.035 3644 0.242 0.778 0.953
smri_area_cdk_paracnlh Cortical area lh-paracentral C-Section 0.030 0.033 3371 0.253 0.366 0.622 -0.005 0.031 3644 0.242 0.868 0.922
smri_area_cdk_paracnlh Cortical area lh-paracentral Gestational Age 0.047 0.048 3371 0.253 0.323 0.549 0.033 0.044 3644 0.242 0.464 0.875
smri_area_cdk_paracnlh Cortical area lh-paracentral Birth weight 0.045 0.043 3371 0.253 0.299 0.484 -0.036 0.043 3644 0.242 0.399 0.609
smri_area_cdk_paracnlh Cortical area lh-paracentral Tobacco use 0.001 0.050 3371 0.253 0.980 0.980 -0.002 0.048 3644 0.242 0.960 0.989
smri_area_cdk_paracnlh Cortical area lh-paracentral Alcohol use -0.011 0.035 3371 0.253 0.763 0.903 -0.060 0.034 3644 0.243 0.081 0.554
smri_area_cdk_paracnlh Cortical area lh-paracentral Marijuana use -0.132 0.068 3371 0.253 0.053 0.543 -0.063 0.069 3644 0.242 0.361 0.860
smri_area_cdk_paracnlh Cortical area lh-paracentral Pregnancy complications 0.033 0.031 3371 0.253 0.295 0.690 0.004 0.030 3644 0.242 0.895 0.966
smri_area_cdk_paracnlh Cortical area lh-paracentral Birth complications 0.037 0.034 3371 0.253 0.283 0.834 0.020 0.032 3644 0.242 0.536 0.850
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Unplanned pregnancy -0.043 0.034 3371 0.306 0.201 0.961 0.037 0.034 3644 0.262 0.277 0.953
smri_area_cdk_parsopclh Cortical area lh-parsopercularis C-Section -0.029 0.031 3371 0.306 0.358 0.622 -0.002 0.031 3644 0.261 0.948 0.959
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Gestational Age 0.052 0.043 3371 0.306 0.232 0.456 0.002 0.043 3644 0.261 0.964 0.999
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Birth weight -0.004 0.041 3371 0.306 0.927 0.927 0.034 0.042 3644 0.261 0.423 0.611
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Tobacco use 0.062 0.048 3371 0.307 0.198 0.740 0.092 0.047 3644 0.262 0.052 0.355
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Alcohol use -0.055 0.034 3371 0.307 0.101 0.527 0.007 0.034 3644 0.261 0.834 0.995
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Marijuana use 0.038 0.066 3371 0.306 0.563 0.955 0.105 0.068 3644 0.262 0.123 0.558
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Pregnancy complications 0.008 0.030 3371 0.306 0.800 0.942 -0.011 0.030 3644 0.261 0.726 0.963
smri_area_cdk_parsopclh Cortical area lh-parsopercularis Birth complications 0.014 0.033 3371 0.306 0.676 0.871 0.016 0.032 3644 0.261 0.610 0.850
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Unplanned pregnancy 0.041 0.032 3371 0.366 0.207 0.961 -0.042 0.031 3644 0.396 0.174 0.953
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis C-Section 0.023 0.030 3371 0.366 0.443 0.654 0.060 0.028 3644 0.396 0.030 0.205
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Gestational Age 0.091 0.043 3371 0.367 0.033 0.173 0.020 0.039 3644 0.396 0.614 0.904
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Birth weight -0.035 0.040 3371 0.365 0.379 0.516 0.042 0.038 3644 0.396 0.272 0.570
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Tobacco use 0.017 0.046 3371 0.366 0.709 0.958 -0.022 0.042 3644 0.396 0.599 0.918
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Alcohol use 0.003 0.032 3371 0.365 0.920 0.934 0.004 0.031 3644 0.395 0.894 0.995
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Marijuana use 0.039 0.063 3371 0.366 0.536 0.954 -0.011 0.061 3644 0.395 0.853 0.980
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Pregnancy complications 0.063 0.029 3371 0.367 0.028 0.215 0.001 0.027 3644 0.395 0.979 0.979
smri_area_cdk_parsobislh Cortical area lh-parsorbitalis Birth complications 0.045 0.032 3371 0.366 0.159 0.834 0.039 0.029 3644 0.396 0.175 0.745
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Unplanned pregnancy -0.025 0.036 3371 0.222 0.492 0.961 0.030 0.035 3644 0.238 0.390 0.953
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis C-Section 0.014 0.033 3371 0.222 0.671 0.800 -0.058 0.031 3644 0.238 0.065 0.315
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Gestational Age -0.003 0.047 3371 0.222 0.941 0.962 -0.031 0.044 3644 0.238 0.480 0.875
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Birth weight -0.027 0.044 3371 0.222 0.542 0.659 -0.071 0.043 3644 0.238 0.100 0.516
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Tobacco use -0.061 0.051 3371 0.222 0.229 0.740 0.113 0.048 3644 0.239 0.018 0.308
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Alcohol use -0.085 0.036 3371 0.223 0.017 0.396 -0.002 0.035 3644 0.237 0.954 0.995
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Marijuana use -0.023 0.070 3371 0.222 0.747 1.000 0.124 0.069 3644 0.238 0.072 0.517
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Pregnancy complications 0.084 0.032 3371 0.224 0.009 0.152 -0.023 0.031 3644 0.238 0.444 0.963
smri_area_cdk_parstgrislh Cortical area lh-parstriangularis Birth complications 0.047 0.035 3371 0.223 0.184 0.834 -0.039 0.032 3644 0.238 0.228 0.830
smri_area_cdk_pericclh Cortical area lh-pericalcarine Unplanned pregnancy 0.027 0.037 3371 0.144 0.469 0.961 -0.040 0.035 3644 0.175 0.254 0.953
smri_area_cdk_pericclh Cortical area lh-pericalcarine C-Section 0.002 0.035 3371 0.144 0.948 0.976 -0.077 0.032 3644 0.174 0.017 0.144
smri_area_cdk_pericclh Cortical area lh-pericalcarine Gestational Age -0.115 0.052 3371 0.142 0.028 0.173 0.126 0.047 3644 0.178 0.007 0.168
smri_area_cdk_pericclh Cortical area lh-pericalcarine Birth weight 0.066 0.044 3371 0.145 0.139 0.411 -0.002 0.044 3644 0.174 0.956 0.992
smri_area_cdk_pericclh Cortical area lh-pericalcarine Tobacco use -0.068 0.053 3371 0.144 0.205 0.740 -0.099 0.049 3644 0.175 0.044 0.355
smri_area_cdk_pericclh Cortical area lh-pericalcarine Alcohol use -0.069 0.038 3371 0.145 0.069 0.527 -0.068 0.035 3644 0.175 0.057 0.553
smri_area_cdk_pericclh Cortical area lh-pericalcarine Marijuana use -0.002 0.072 3371 0.144 0.973 1.000 0.047 0.070 3644 0.174 0.499 0.860
smri_area_cdk_pericclh Cortical area lh-pericalcarine Pregnancy complications -0.087 0.033 3371 0.145 0.009 0.152 -0.034 0.031 3644 0.174 0.281 0.963
smri_area_cdk_pericclh Cortical area lh-pericalcarine Birth complications -0.031 0.035 3371 0.144 0.377 0.834 -0.012 0.033 3644 0.174 0.705 0.872
smri_area_cdk_postcnlh Cortical area lh-postcentral Unplanned pregnancy 0.002 0.027 3371 0.547 0.930 0.961 -0.008 0.027 3644 0.535 0.765 0.953
smri_area_cdk_postcnlh Cortical area lh-postcentral C-Section 0.016 0.025 3371 0.547 0.540 0.739 0.012 0.024 3644 0.536 0.605 0.745
smri_area_cdk_postcnlh Cortical area lh-postcentral Gestational Age -0.043 0.037 3371 0.547 0.244 0.456 -0.033 0.034 3644 0.536 0.325 0.842
smri_area_cdk_postcnlh Cortical area lh-postcentral Birth weight 0.038 0.034 3371 0.548 0.260 0.484 0.032 0.033 3644 0.536 0.343 0.609
smri_area_cdk_postcnlh Cortical area lh-postcentral Tobacco use -0.026 0.039 3371 0.547 0.493 0.958 -0.050 0.037 3644 0.536 0.170 0.580
smri_area_cdk_postcnlh Cortical area lh-postcentral Alcohol use 0.042 0.027 3371 0.548 0.123 0.539 -0.012 0.027 3644 0.535 0.640 0.995
smri_area_cdk_postcnlh Cortical area lh-postcentral Marijuana use -0.009 0.053 3371 0.547 0.872 1.000 0.018 0.053 3644 0.536 0.737 0.946
smri_area_cdk_postcnlh Cortical area lh-postcentral Pregnancy complications -0.032 0.024 3371 0.548 0.186 0.560 -0.005 0.024 3644 0.536 0.817 0.963
smri_area_cdk_postcnlh Cortical area lh-postcentral Birth complications -0.011 0.027 3371 0.547 0.692 0.871 -0.016 0.025 3644 0.536 0.534 0.850
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Unplanned pregnancy -0.067 0.034 3371 0.285 0.048 0.961 0.002 0.034 3644 0.255 0.945 0.989
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate C-Section -0.009 0.031 3371 0.284 0.764 0.880 0.008 0.031 3644 0.255 0.784 0.876
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Gestational Age 0.016 0.046 3371 0.284 0.726 0.882 -0.001 0.044 3644 0.255 0.984 0.999
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Birth weight 0.035 0.042 3371 0.284 0.396 0.527 -0.049 0.042 3644 0.255 0.248 0.544
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Tobacco use -0.013 0.048 3371 0.284 0.786 0.958 0.020 0.047 3644 0.255 0.669 0.918
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Alcohol use 0.015 0.034 3371 0.284 0.660 0.903 0.010 0.034 3644 0.255 0.760 0.995
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Marijuana use -0.103 0.066 3371 0.285 0.116 0.879 -0.050 0.067 3644 0.255 0.460 0.860
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Pregnancy complications -0.011 0.030 3371 0.284 0.702 0.926 -0.012 0.030 3644 0.255 0.694 0.963
smri_area_cdk_ptcatelh Cortical area lh-posteriorcingulate Birth complications -0.014 0.033 3371 0.284 0.679 0.871 -0.005 0.032 3644 0.255 0.886 0.965
smri_area_cdk_precnlh Cortical area lh-precentral Unplanned pregnancy -0.044 0.029 3371 0.503 0.129 0.961 -0.062 0.027 3644 0.520 0.022 0.953
smri_area_cdk_precnlh Cortical area lh-precentral C-Section 0.021 0.027 3371 0.503 0.430 0.654 0.030 0.025 3644 0.520 0.224 0.463
smri_area_cdk_precnlh Cortical area lh-precentral Gestational Age 0.031 0.039 3371 0.503 0.422 0.624 0.003 0.035 3644 0.520 0.927 0.999
smri_area_cdk_precnlh Cortical area lh-precentral Birth weight 0.032 0.035 3371 0.503 0.370 0.516 0.041 0.034 3644 0.520 0.224 0.529
smri_area_cdk_precnlh Cortical area lh-precentral Tobacco use 0.040 0.041 3371 0.503 0.333 0.855 -0.095 0.037 3644 0.520 0.012 0.263
smri_area_cdk_precnlh Cortical area lh-precentral Alcohol use 0.017 0.029 3371 0.503 0.552 0.883 -0.048 0.027 3644 0.520 0.076 0.554
smri_area_cdk_precnlh Cortical area lh-precentral Marijuana use 0.068 0.056 3371 0.503 0.221 0.879 -0.007 0.054 3644 0.520 0.894 0.980
smri_area_cdk_precnlh Cortical area lh-precentral Pregnancy complications 0.013 0.026 3371 0.503 0.600 0.883 -0.002 0.024 3644 0.520 0.943 0.979
smri_area_cdk_precnlh Cortical area lh-precentral Birth complications -0.029 0.028 3371 0.503 0.305 0.834 -0.029 0.025 3644 0.520 0.256 0.830
smri_area_cdk_pclh Cortical area lh-precuneus Unplanned pregnancy -0.005 0.028 3371 0.513 0.849 0.961 0.012 0.028 3644 0.485 0.660 0.953
smri_area_cdk_pclh Cortical area lh-precuneus C-Section 0.049 0.026 3371 0.513 0.057 0.277 0.017 0.025 3644 0.485 0.496 0.745
smri_area_cdk_pclh Cortical area lh-precuneus Gestational Age 0.055 0.038 3371 0.513 0.143 0.347 -0.018 0.037 3644 0.485 0.629 0.904
smri_area_cdk_pclh Cortical area lh-precuneus Birth weight -0.041 0.034 3371 0.513 0.234 0.467 0.051 0.035 3644 0.485 0.144 0.516
smri_area_cdk_pclh Cortical area lh-precuneus Tobacco use -0.032 0.039 3371 0.513 0.411 0.902 0.055 0.038 3644 0.485 0.155 0.555
smri_area_cdk_pclh Cortical area lh-precuneus Alcohol use 0.023 0.028 3371 0.512 0.407 0.748 0.017 0.028 3644 0.485 0.534 0.995
smri_area_cdk_pclh Cortical area lh-precuneus Marijuana use 0.102 0.054 3371 0.513 0.056 0.543 0.031 0.055 3644 0.485 0.578 0.860
smri_area_cdk_pclh Cortical area lh-precuneus Pregnancy complications -0.039 0.024 3371 0.513 0.107 0.487 -0.017 0.025 3644 0.485 0.484 0.963
smri_area_cdk_pclh Cortical area lh-precuneus Birth complications 0.014 0.027 3371 0.513 0.596 0.871 0.019 0.026 3644 0.485 0.467 0.850
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Unplanned pregnancy 0.013 0.031 3371 0.404 0.682 0.961 0.014 0.030 3644 0.394 0.636 0.953
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate C-Section 0.030 0.028 3371 0.404 0.288 0.530 0.064 0.027 3644 0.396 0.019 0.144
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Gestational Age -0.008 0.041 3371 0.404 0.838 0.917 -0.083 0.040 3644 0.394 0.037 0.313
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Birth weight -0.007 0.038 3371 0.404 0.852 0.889 0.000 0.038 3644 0.394 0.992 0.992
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Tobacco use -0.092 0.043 3371 0.405 0.034 0.740 0.086 0.042 3644 0.394 0.038 0.355
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Alcohol use -0.039 0.031 3371 0.405 0.205 0.539 0.007 0.030 3644 0.394 0.816 0.995
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Marijuana use -0.132 0.059 3371 0.405 0.025 0.429 0.030 0.060 3644 0.394 0.612 0.860
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Pregnancy complications 0.051 0.027 3371 0.405 0.059 0.364 -0.036 0.027 3644 0.395 0.177 0.963
smri_area_cdk_rracatelh Cortical area lh-rostralanteriorcingulate Birth complications -0.018 0.030 3371 0.404 0.547 0.871 -0.057 0.028 3644 0.395 0.042 0.579
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Unplanned pregnancy 0.014 0.025 3371 0.616 0.567 0.961 -0.023 0.025 3644 0.604 0.360 0.953
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal C-Section 0.027 0.023 3371 0.616 0.239 0.507 0.017 0.023 3644 0.603 0.440 0.704
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Gestational Age 0.051 0.033 3371 0.616 0.124 0.347 0.047 0.032 3644 0.604 0.142 0.690
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Birth weight 0.037 0.031 3371 0.616 0.223 0.467 0.042 0.031 3644 0.604 0.172 0.529
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Tobacco use -0.037 0.035 3371 0.616 0.296 0.855 -0.040 0.034 3644 0.604 0.245 0.619
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Alcohol use -0.042 0.025 3371 0.617 0.090 0.527 0.012 0.025 3644 0.604 0.634 0.995
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Marijuana use -0.064 0.048 3371 0.617 0.183 0.879 -0.081 0.049 3644 0.604 0.101 0.517
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Pregnancy complications 0.048 0.022 3371 0.617 0.028 0.215 -0.010 0.022 3644 0.604 0.642 0.963
smri_area_cdk_rrmdfrlh Cortical area lh-rostralmiddlefrontal Birth complications 0.033 0.024 3371 0.616 0.175 0.834 0.012 0.023 3644 0.604 0.593 0.850
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Unplanned pregnancy -0.008 0.022 3371 0.703 0.736 0.961 0.000 0.021 3644 0.712 0.989 0.989
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal C-Section 0.020 0.020 3371 0.703 0.319 0.571 0.024 0.019 3644 0.712 0.212 0.463
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Gestational Age 0.048 0.029 3371 0.703 0.098 0.319 0.052 0.027 3644 0.713 0.052 0.367
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Birth weight 0.024 0.027 3371 0.703 0.375 0.516 -0.035 0.027 3644 0.712 0.191 0.529
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Tobacco use 0.039 0.032 3371 0.703 0.222 0.740 0.008 0.029 3644 0.712 0.790 0.922
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Alcohol use 0.009 0.022 3371 0.703 0.685 0.903 -0.015 0.021 3644 0.712 0.479 0.995
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Marijuana use -0.041 0.043 3371 0.703 0.348 0.879 0.026 0.042 3644 0.712 0.535 0.860
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Pregnancy complications 0.033 0.020 3371 0.703 0.091 0.440 -0.037 0.019 3644 0.712 0.048 0.701
smri_area_cdk_sufrlh Cortical area lh-superiorfrontal Birth complications 0.009 0.022 3371 0.703 0.689 0.871 0.013 0.020 3644 0.712 0.523 0.850
smri_area_cdk_supllh Cortical area lh-superiorparietal Unplanned pregnancy 0.022 0.029 3371 0.485 0.460 0.961 0.021 0.029 3644 0.487 0.460 0.953
smri_area_cdk_supllh Cortical area lh-superiorparietal C-Section 0.016 0.027 3371 0.485 0.557 0.739 -0.038 0.026 3644 0.488 0.145 0.430
smri_area_cdk_supllh Cortical area lh-superiorparietal Gestational Age 0.007 0.039 3371 0.485 0.849 0.917 -0.047 0.037 3644 0.488 0.207 0.714
smri_area_cdk_supllh Cortical area lh-superiorparietal Birth weight -0.038 0.036 3371 0.486 0.296 0.484 0.034 0.036 3644 0.487 0.338 0.609
smri_area_cdk_supllh Cortical area lh-superiorparietal Tobacco use 0.015 0.041 3371 0.485 0.722 0.958 0.090 0.039 3644 0.488 0.023 0.308
smri_area_cdk_supllh Cortical area lh-superiorparietal Alcohol use -0.040 0.029 3371 0.486 0.167 0.539 0.043 0.029 3644 0.488 0.131 0.740
smri_area_cdk_supllh Cortical area lh-superiorparietal Marijuana use 0.050 0.057 3371 0.485 0.379 0.879 0.038 0.057 3644 0.487 0.497 0.860
smri_area_cdk_supllh Cortical area lh-superiorparietal Pregnancy complications -0.059 0.026 3371 0.486 0.022 0.215 0.025 0.025 3644 0.487 0.324 0.963
smri_area_cdk_supllh Cortical area lh-superiorparietal Birth complications -0.016 0.029 3371 0.486 0.570 0.871 0.005 0.027 3644 0.487 0.836 0.959
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Unplanned pregnancy -0.004 0.028 3371 0.550 0.875 0.961 -0.012 0.026 3644 0.560 0.640 0.953
smri_area_cdk_sutmlh Cortical area lh-superiortemporal C-Section -0.015 0.026 3371 0.550 0.550 0.739 0.016 0.024 3644 0.560 0.502 0.745
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Gestational Age -0.043 0.037 3371 0.550 0.248 0.456 0.000 0.034 3644 0.560 0.999 0.999
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Birth weight 0.040 0.034 3371 0.550 0.229 0.467 0.021 0.033 3644 0.560 0.525 0.714
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Tobacco use -0.001 0.039 3371 0.550 0.977 0.980 -0.046 0.036 3644 0.560 0.206 0.602
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Alcohol use -0.015 0.028 3371 0.550 0.586 0.883 -0.049 0.026 3644 0.561 0.065 0.553
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Marijuana use -0.046 0.053 3371 0.550 0.385 0.879 -0.113 0.052 3644 0.561 0.031 0.428
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Pregnancy complications -0.023 0.024 3371 0.550 0.347 0.706 -0.012 0.023 3644 0.560 0.603 0.963
smri_area_cdk_sutmlh Cortical area lh-superiortemporal Birth complications 0.020 0.027 3371 0.550 0.458 0.871 0.040 0.025 3644 0.560 0.100 0.650
smri_area_cdk_smlh Cortical area lh-supramarginal Unplanned pregnancy -0.013 0.029 3371 0.475 0.667 0.961 0.034 0.028 3644 0.503 0.219 0.953
smri_area_cdk_smlh Cortical area lh-supramarginal C-Section -0.016 0.027 3371 0.475 0.565 0.739 0.019 0.025 3644 0.503 0.445 0.704
smri_area_cdk_smlh Cortical area lh-supramarginal Gestational Age 0.035 0.039 3371 0.475 0.376 0.568 -0.040 0.036 3644 0.503 0.266 0.747
smri_area_cdk_smlh Cortical area lh-supramarginal Birth weight 0.017 0.036 3371 0.475 0.645 0.747 -0.052 0.035 3644 0.503 0.137 0.516
smri_area_cdk_smlh Cortical area lh-supramarginal Tobacco use -0.053 0.041 3371 0.476 0.203 0.740 0.005 0.039 3644 0.503 0.894 0.950
smri_area_cdk_smlh Cortical area lh-supramarginal Alcohol use -0.014 0.029 3371 0.475 0.635 0.900 0.011 0.028 3644 0.503 0.688 0.995
smri_area_cdk_smlh Cortical area lh-supramarginal Marijuana use -0.054 0.057 3371 0.476 0.343 0.879 -0.060 0.055 3644 0.503 0.276 0.817
smri_area_cdk_smlh Cortical area lh-supramarginal Pregnancy complications -0.022 0.026 3371 0.475 0.402 0.739 0.001 0.025 3644 0.503 0.954 0.979
smri_area_cdk_smlh Cortical area lh-supramarginal Birth complications 0.025 0.029 3371 0.475 0.379 0.834 0.043 0.026 3644 0.503 0.097 0.650
smri_area_cdk_frpolelh Cortical area lh-frontalpole Unplanned pregnancy -0.056 0.037 3371 0.145 0.128 0.961 0.012 0.036 3644 0.162 0.735 0.953
smri_area_cdk_frpolelh Cortical area lh-frontalpole C-Section 0.123 0.034 3371 0.148 0.000 0.012 0.121 0.032 3644 0.166 0.000 0.012
smri_area_cdk_frpolelh Cortical area lh-frontalpole Gestational Age 0.010 0.049 3371 0.144 0.835 0.917 0.043 0.046 3644 0.162 0.352 0.842
smri_area_cdk_frpolelh Cortical area lh-frontalpole Birth weight 0.074 0.046 3371 0.145 0.107 0.389 0.042 0.045 3644 0.162 0.352 0.609
smri_area_cdk_frpolelh Cortical area lh-frontalpole Tobacco use -0.026 0.052 3371 0.144 0.613 0.958 -0.014 0.049 3644 0.162 0.780 0.922
smri_area_cdk_frpolelh Cortical area lh-frontalpole Alcohol use 0.014 0.037 3371 0.144 0.696 0.903 -0.001 0.036 3644 0.162 0.981 0.995
smri_area_cdk_frpolelh Cortical area lh-frontalpole Marijuana use -0.071 0.072 3371 0.144 0.325 0.879 0.011 0.071 3644 0.162 0.876 0.980
smri_area_cdk_frpolelh Cortical area lh-frontalpole Pregnancy complications -0.021 0.033 3371 0.144 0.517 0.818 0.035 0.032 3644 0.162 0.265 0.963
smri_area_cdk_frpolelh Cortical area lh-frontalpole Birth complications -0.024 0.036 3371 0.144 0.513 0.871 -0.017 0.034 3644 0.162 0.605 0.850
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Unplanned pregnancy 0.003 0.036 3371 0.202 0.924 0.961 -0.025 0.036 3644 0.199 0.479 0.953
smri_area_cdk_tmpolelh Cortical area lh-temporalpole C-Section 0.020 0.034 3371 0.202 0.542 0.739 0.030 0.032 3644 0.199 0.357 0.607
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Gestational Age 0.033 0.048 3371 0.202 0.491 0.698 0.015 0.045 3644 0.199 0.739 0.939
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Birth weight -0.047 0.045 3371 0.202 0.288 0.484 0.053 0.044 3644 0.199 0.233 0.529
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Tobacco use -0.073 0.051 3371 0.202 0.151 0.740 -0.046 0.049 3644 0.199 0.349 0.719
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Alcohol use -0.078 0.036 3371 0.203 0.031 0.434 -0.010 0.035 3644 0.199 0.775 0.995
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Marijuana use -0.100 0.070 3371 0.202 0.153 0.879 -0.063 0.071 3644 0.199 0.370 0.860
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Pregnancy complications -0.008 0.032 3371 0.202 0.814 0.942 -0.005 0.031 3644 0.199 0.875 0.963
smri_area_cdk_tmpolelh Cortical area lh-temporalpole Birth complications 0.008 0.035 3371 0.202 0.815 0.947 0.021 0.033 3644 0.199 0.525 0.850
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Unplanned pregnancy 0.018 0.036 3371 0.233 0.615 0.961 -0.029 0.036 3644 0.203 0.414 0.953
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal C-Section 0.044 0.033 3371 0.233 0.184 0.441 0.049 0.032 3644 0.204 0.128 0.430
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Gestational Age 0.032 0.047 3371 0.233 0.500 0.698 0.034 0.046 3644 0.204 0.455 0.875
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Birth weight 0.040 0.044 3371 0.233 0.367 0.516 0.086 0.044 3644 0.204 0.052 0.516
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Tobacco use 0.063 0.050 3371 0.233 0.211 0.740 -0.075 0.049 3644 0.204 0.124 0.497
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Alcohol use 0.051 0.036 3371 0.233 0.153 0.539 -0.044 0.036 3644 0.204 0.220 0.960
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Marijuana use 0.031 0.069 3371 0.233 0.656 0.991 -0.120 0.070 3644 0.204 0.088 0.517
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Pregnancy complications 0.058 0.031 3371 0.234 0.066 0.372 0.002 0.031 3644 0.203 0.945 0.979
smri_area_cdk_trvtmlh Cortical area lh-transversetemporal Birth complications 0.035 0.035 3371 0.233 0.311 0.834 -0.030 0.033 3644 0.203 0.370 0.850
smri_area_cdk_insulalh Cortical area lh-insula Unplanned pregnancy 0.011 0.030 3371 0.405 0.727 0.961 0.000 0.029 3644 0.413 0.987 0.989
smri_area_cdk_insulalh Cortical area lh-insula C-Section -0.065 0.028 3371 0.406 0.022 0.149 0.031 0.027 3644 0.413 0.247 0.465
smri_area_cdk_insulalh Cortical area lh-insula Gestational Age -0.039 0.042 3371 0.405 0.352 0.556 -0.035 0.039 3644 0.412 0.359 0.842
smri_area_cdk_insulalh Cortical area lh-insula Birth weight -0.093 0.037 3371 0.406 0.012 0.106 -0.055 0.037 3644 0.413 0.137 0.516
smri_area_cdk_insulalh Cortical area lh-insula Tobacco use -0.041 0.043 3371 0.405 0.344 0.855 0.065 0.041 3644 0.413 0.110 0.466
smri_area_cdk_insulalh Cortical area lh-insula Alcohol use -0.051 0.031 3371 0.406 0.094 0.527 0.011 0.029 3644 0.413 0.704 0.995
smri_area_cdk_insulalh Cortical area lh-insula Marijuana use -0.056 0.059 3371 0.405 0.345 0.879 0.166 0.058 3644 0.414 0.004 0.143
smri_area_cdk_insulalh Cortical area lh-insula Pregnancy complications -0.077 0.027 3371 0.406 0.004 0.152 -0.024 0.026 3644 0.413 0.364 0.963
smri_area_cdk_insulalh Cortical area lh-insula Birth complications -0.007 0.030 3371 0.405 0.805 0.947 -0.004 0.027 3644 0.413 0.875 0.965
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Unplanned pregnancy 0.007 0.034 3371 0.280 0.837 0.961 0.009 0.033 3644 0.307 0.789 0.953
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus C-Section -0.035 0.032 3371 0.281 0.273 0.516 0.018 0.030 3644 0.307 0.555 0.745
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Gestational Age -0.114 0.045 3371 0.283 0.012 0.106 -0.082 0.042 3644 0.309 0.054 0.367
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Birth weight -0.051 0.042 3371 0.281 0.228 0.467 -0.034 0.041 3644 0.308 0.412 0.609
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Tobacco use 0.100 0.049 3371 0.281 0.039 0.740 0.011 0.045 3644 0.307 0.814 0.922
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Alcohol use 0.018 0.034 3371 0.280 0.597 0.883 0.030 0.033 3644 0.308 0.361 0.989
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Marijuana use -0.013 0.067 3371 0.280 0.852 1.000 -0.002 0.065 3644 0.307 0.973 0.987
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Pregnancy complications -0.041 0.030 3371 0.281 0.180 0.560 0.007 0.029 3644 0.307 0.804 0.963
smri_area_cdk_banksstsrh Cortical area rh-Banks of Superior Temporal Sulcus Birth complications 0.003 0.034 3371 0.280 0.922 0.965 0.009 0.031 3644 0.307 0.763 0.917
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Unplanned pregnancy -0.024 0.036 3371 0.227 0.498 0.961 0.010 0.036 3644 0.196 0.787 0.953
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate C-Section 0.001 0.033 3371 0.227 0.987 0.987 0.039 0.032 3644 0.196 0.227 0.463
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Gestational Age -0.047 0.048 3371 0.227 0.326 0.549 0.026 0.046 3644 0.196 0.571 0.883
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Birth weight -0.059 0.044 3371 0.227 0.180 0.467 0.074 0.044 3644 0.196 0.096 0.516
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Tobacco use 0.003 0.051 3371 0.227 0.959 0.980 0.000 0.049 3644 0.196 0.996 0.996
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Alcohol use 0.044 0.036 3371 0.227 0.222 0.539 -0.038 0.035 3644 0.196 0.288 0.960
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Marijuana use 0.015 0.069 3371 0.227 0.828 1.000 -0.035 0.071 3644 0.196 0.618 0.860
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Pregnancy complications -0.038 0.032 3371 0.227 0.229 0.624 -0.024 0.031 3644 0.196 0.449 0.963
smri_area_cdk_cdacaterh Cortical area rh-caudalanteriorcingulate Birth complications -0.033 0.035 3371 0.227 0.351 0.834 0.017 0.033 3644 0.196 0.602 0.850
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Unplanned pregnancy 0.003 0.032 3371 0.403 0.932 0.961 0.003 0.031 3644 0.404 0.912 0.989
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal C-Section 0.050 0.029 3371 0.403 0.088 0.327 0.039 0.028 3644 0.405 0.160 0.452
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Gestational Age 0.064 0.042 3371 0.403 0.130 0.347 -0.001 0.039 3644 0.404 0.979 0.999
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Birth weight 0.042 0.039 3371 0.403 0.280 0.484 0.046 0.038 3644 0.404 0.230 0.529
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Tobacco use -0.024 0.045 3371 0.403 0.598 0.958 -0.054 0.042 3644 0.404 0.198 0.602
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Alcohol use -0.010 0.032 3371 0.403 0.763 0.903 0.001 0.031 3644 0.404 0.984 0.995
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Marijuana use -0.056 0.061 3371 0.403 0.361 0.879 0.015 0.061 3644 0.404 0.807 0.963
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Pregnancy complications 0.020 0.028 3371 0.403 0.474 0.787 -0.027 0.027 3644 0.404 0.317 0.963
smri_area_cdk_cdmdfrrh Cortical area rh-caudalmiddlefrontal Birth complications 0.004 0.031 3371 0.403 0.902 0.965 -0.011 0.029 3644 0.404 0.693 0.872
smri_area_cdk_cuneusrh Cortical area rh-cuneus Unplanned pregnancy 0.014 0.034 3371 0.321 0.677 0.961 0.028 0.034 3644 0.291 0.406 0.953
smri_area_cdk_cuneusrh Cortical area rh-cuneus C-Section 0.026 0.031 3371 0.321 0.412 0.651 -0.045 0.030 3644 0.291 0.136 0.430
smri_area_cdk_cuneusrh Cortical area rh-cuneus Gestational Age 0.001 0.045 3371 0.321 0.977 0.977 0.069 0.043 3644 0.291 0.108 0.613
smri_area_cdk_cuneusrh Cortical area rh-cuneus Birth weight 0.082 0.041 3371 0.322 0.046 0.228 0.058 0.042 3644 0.291 0.166 0.529
smri_area_cdk_cuneusrh Cortical area rh-cuneus Tobacco use 0.033 0.048 3371 0.321 0.484 0.958 0.085 0.046 3644 0.291 0.065 0.369
smri_area_cdk_cuneusrh Cortical area rh-cuneus Alcohol use -0.056 0.034 3371 0.322 0.094 0.527 0.015 0.033 3644 0.291 0.648 0.995
smri_area_cdk_cuneusrh Cortical area rh-cuneus Marijuana use 0.150 0.065 3371 0.322 0.021 0.429 0.131 0.067 3644 0.291 0.049 0.517
smri_area_cdk_cuneusrh Cortical area rh-cuneus Pregnancy complications 0.032 0.030 3371 0.321 0.281 0.686 -0.007 0.030 3644 0.290 0.817 0.963
smri_area_cdk_cuneusrh Cortical area rh-cuneus Birth complications -0.042 0.033 3371 0.321 0.201 0.834 -0.037 0.031 3644 0.291 0.236 0.830
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Unplanned pregnancy -0.017 0.039 3371 0.091 0.664 0.961 0.003 0.038 3644 0.089 0.933 0.989
smri_area_cdk_ehinalrh Cortical area rh-entorhinal C-Section 0.053 0.036 3371 0.092 0.136 0.421 0.099 0.034 3644 0.091 0.004 0.084
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Gestational Age 0.033 0.052 3371 0.091 0.525 0.714 -0.019 0.049 3644 0.088 0.696 0.939
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Birth weight -0.050 0.048 3371 0.091 0.289 0.484 -0.072 0.047 3644 0.089 0.124 0.516
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Tobacco use -0.069 0.055 3371 0.091 0.207 0.740 -0.015 0.052 3644 0.089 0.775 0.922
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Alcohol use -0.081 0.039 3371 0.092 0.036 0.434 -0.003 0.038 3644 0.089 0.936 0.995
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Marijuana use -0.014 0.075 3371 0.091 0.847 1.000 -0.059 0.075 3644 0.089 0.434 0.860
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Pregnancy complications -0.001 0.034 3371 0.091 0.976 0.988 -0.046 0.033 3644 0.089 0.164 0.963
smri_area_cdk_ehinalrh Cortical area rh-entorhinal Birth complications -0.034 0.038 3371 0.091 0.368 0.834 -0.025 0.035 3644 0.089 0.486 0.850
smri_area_cdk_fusiformrh Cortical area rh-fusiform Unplanned pregnancy 0.037 0.030 3371 0.449 0.220 0.961 0.022 0.029 3644 0.438 0.456 0.953
smri_area_cdk_fusiformrh Cortical area rh-fusiform C-Section -0.050 0.028 3371 0.449 0.070 0.316 -0.007 0.027 3644 0.438 0.799 0.876
smri_area_cdk_fusiformrh Cortical area rh-fusiform Gestational Age -0.115 0.040 3371 0.449 0.004 0.060 -0.057 0.038 3644 0.438 0.138 0.690
smri_area_cdk_fusiformrh Cortical area rh-fusiform Birth weight -0.026 0.037 3371 0.449 0.487 0.624 -0.033 0.037 3644 0.438 0.374 0.609
smri_area_cdk_fusiformrh Cortical area rh-fusiform Tobacco use 0.059 0.042 3371 0.449 0.164 0.740 0.016 0.040 3644 0.438 0.694 0.922
smri_area_cdk_fusiformrh Cortical area rh-fusiform Alcohol use 0.011 0.030 3371 0.449 0.724 0.903 0.004 0.029 3644 0.438 0.885 0.995
smri_area_cdk_fusiformrh Cortical area rh-fusiform Marijuana use 0.007 0.058 3371 0.449 0.907 1.000 0.007 0.058 3644 0.438 0.908 0.980
smri_area_cdk_fusiformrh Cortical area rh-fusiform Pregnancy complications -0.063 0.026 3371 0.449 0.017 0.201 0.032 0.026 3644 0.438 0.213 0.963
smri_area_cdk_fusiformrh Cortical area rh-fusiform Birth complications -0.021 0.029 3371 0.449 0.478 0.871 -0.053 0.027 3644 0.439 0.051 0.579
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Unplanned pregnancy -0.005 0.030 3371 0.479 0.856 0.961 0.004 0.029 3644 0.452 0.885 0.989
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal C-Section -0.064 0.027 3371 0.480 0.020 0.149 0.030 0.027 3644 0.452 0.253 0.465
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Gestational Age -0.082 0.040 3371 0.481 0.039 0.176 -0.013 0.038 3644 0.452 0.733 0.939
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Birth weight -0.050 0.036 3371 0.480 0.165 0.449 -0.039 0.037 3644 0.452 0.287 0.570
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Tobacco use 0.009 0.042 3371 0.479 0.833 0.959 -0.066 0.040 3644 0.452 0.102 0.463
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Alcohol use 0.026 0.030 3371 0.479 0.382 0.748 0.005 0.029 3644 0.452 0.851 0.995
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Marijuana use 0.031 0.057 3371 0.479 0.590 0.955 -0.081 0.058 3644 0.452 0.161 0.631
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Pregnancy complications -0.013 0.026 3371 0.479 0.610 0.883 -0.005 0.026 3644 0.452 0.843 0.963
smri_area_cdk_ifplrh Cortical area rh-inferiorparietal Birth complications -0.027 0.029 3371 0.479 0.355 0.834 -0.019 0.027 3644 0.452 0.487 0.850
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Unplanned pregnancy -0.012 0.029 3371 0.507 0.670 0.961 -0.023 0.028 3644 0.515 0.401 0.953
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal C-Section 0.001 0.027 3371 0.507 0.984 0.987 0.013 0.025 3644 0.515 0.589 0.745
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Gestational Age 0.090 0.038 3371 0.508 0.018 0.137 0.023 0.035 3644 0.515 0.512 0.875
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Birth weight 0.062 0.035 3371 0.508 0.080 0.319 0.083 0.034 3644 0.516 0.016 0.356
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Tobacco use -0.022 0.041 3371 0.507 0.586 0.958 -0.043 0.038 3644 0.515 0.260 0.619
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Alcohol use -0.007 0.029 3371 0.507 0.797 0.903 -0.002 0.028 3644 0.515 0.941 0.995
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Marijuana use -0.049 0.056 3371 0.507 0.376 0.879 -0.090 0.055 3644 0.516 0.101 0.517
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Pregnancy complications 0.039 0.025 3371 0.507 0.130 0.521 0.033 0.024 3644 0.516 0.170 0.963
smri_area_cdk_iftmrh Cortical area rh-inferiortemporal Birth complications 0.035 0.028 3371 0.507 0.217 0.834 0.042 0.026 3644 0.516 0.105 0.650
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Unplanned pregnancy -0.030 0.034 3371 0.318 0.377 0.961 -0.014 0.033 3644 0.314 0.660 0.953
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate C-Section 0.055 0.031 3371 0.318 0.077 0.327 -0.002 0.030 3644 0.314 0.946 0.959
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Gestational Age -0.066 0.045 3371 0.319 0.142 0.347 0.053 0.042 3644 0.314 0.209 0.714
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Birth weight 0.035 0.041 3371 0.318 0.403 0.527 -0.043 0.041 3644 0.314 0.293 0.570
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Tobacco use -0.093 0.048 3371 0.319 0.051 0.740 -0.009 0.045 3644 0.314 0.845 0.942
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Alcohol use -0.044 0.034 3371 0.318 0.194 0.539 -0.038 0.033 3644 0.314 0.246 0.960
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Marijuana use -0.075 0.065 3371 0.318 0.249 0.879 -0.097 0.065 3644 0.314 0.135 0.574
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Pregnancy complications -0.002 0.030 3371 0.318 0.952 0.984 -0.043 0.029 3644 0.314 0.140 0.963
smri_area_cdk_ihcaterh Cortical area rh-isthmuscingulate Birth complications -0.027 0.033 3371 0.318 0.410 0.834 0.012 0.031 3644 0.314 0.686 0.872
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Unplanned pregnancy 0.023 0.030 3371 0.464 0.439 0.961 0.047 0.030 3644 0.429 0.114 0.953
smri_area_cdk_loccrh Cortical area rh-lateraloccipital C-Section -0.037 0.028 3371 0.464 0.180 0.441 -0.068 0.027 3644 0.430 0.011 0.121
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Gestational Age -0.019 0.040 3371 0.464 0.637 0.802 0.023 0.038 3644 0.429 0.544 0.875
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Birth weight 0.047 0.037 3371 0.464 0.200 0.467 0.035 0.037 3644 0.429 0.348 0.609
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Tobacco use 0.021 0.043 3371 0.464 0.630 0.958 0.017 0.041 3644 0.429 0.675 0.918
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Alcohol use -0.018 0.030 3371 0.464 0.558 0.883 0.029 0.030 3644 0.429 0.334 0.988
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Marijuana use 0.070 0.058 3371 0.464 0.230 0.879 0.159 0.059 3644 0.430 0.008 0.172
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Pregnancy complications 0.004 0.027 3371 0.464 0.887 0.957 0.005 0.026 3644 0.429 0.859 0.963
smri_area_cdk_loccrh Cortical area rh-lateraloccipital Birth complications -0.034 0.029 3371 0.464 0.239 0.834 0.040 0.028 3644 0.429 0.154 0.696
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Unplanned pregnancy 0.012 0.028 3371 0.494 0.679 0.961 -0.049 0.028 3644 0.500 0.078 0.953
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal C-Section -0.061 0.026 3371 0.495 0.021 0.149 -0.044 0.025 3644 0.501 0.079 0.360
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Gestational Age 0.010 0.038 3371 0.494 0.787 0.917 -0.051 0.036 3644 0.501 0.163 0.698
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Birth weight -0.122 0.035 3371 0.497 0.000 0.017 -0.103 0.035 3644 0.502 0.003 0.099
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Tobacco use 0.018 0.040 3371 0.494 0.652 0.958 -0.018 0.038 3644 0.500 0.632 0.918
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Alcohol use -0.018 0.028 3371 0.494 0.534 0.883 -0.017 0.028 3644 0.500 0.552 0.995
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Marijuana use -0.006 0.055 3371 0.494 0.915 1.000 -0.039 0.055 3644 0.500 0.477 0.860
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Pregnancy complications -0.013 0.025 3371 0.494 0.592 0.883 -0.021 0.025 3644 0.500 0.401 0.963
smri_area_cdk_lobfrrh Cortical area rh-lateralorbitofrontal Birth complications 0.043 0.028 3371 0.494 0.117 0.834 -0.051 0.026 3644 0.501 0.048 0.579
smri_area_cdk_lingualrh Cortical area rh-lingual Unplanned pregnancy 0.007 0.034 3371 0.252 0.826 0.961 0.020 0.033 3644 0.270 0.533 0.953
smri_area_cdk_lingualrh Cortical area rh-lingual C-Section 0.005 0.032 3371 0.252 0.867 0.948 -0.059 0.030 3644 0.269 0.049 0.255
smri_area_cdk_lingualrh Cortical area rh-lingual Gestational Age -0.122 0.047 3371 0.251 0.009 0.103 0.026 0.043 3644 0.270 0.553 0.875
smri_area_cdk_lingualrh Cortical area rh-lingual Birth weight 0.047 0.041 3371 0.253 0.251 0.484 -0.021 0.041 3644 0.270 0.606 0.808
smri_area_cdk_lingualrh Cortical area rh-lingual Tobacco use -0.016 0.048 3371 0.252 0.734 0.958 -0.024 0.045 3644 0.270 0.600 0.918
smri_area_cdk_lingualrh Cortical area rh-lingual Alcohol use -0.008 0.034 3371 0.252 0.810 0.903 0.019 0.033 3644 0.270 0.566 0.995
smri_area_cdk_lingualrh Cortical area rh-lingual Marijuana use 0.051 0.065 3371 0.252 0.437 0.901 0.040 0.065 3644 0.270 0.540 0.860
smri_area_cdk_lingualrh Cortical area rh-lingual Pregnancy complications -0.026 0.030 3371 0.252 0.386 0.737 0.012 0.029 3644 0.270 0.689 0.963
smri_area_cdk_lingualrh Cortical area rh-lingual Birth complications -0.027 0.033 3371 0.252 0.417 0.834 -0.052 0.030 3644 0.270 0.086 0.650
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Unplanned pregnancy 0.017 0.030 3371 0.452 0.571 0.961 -0.007 0.028 3644 0.490 0.798 0.953
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal C-Section 0.056 0.028 3371 0.453 0.041 0.214 0.050 0.025 3644 0.492 0.048 0.255
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Gestational Age 0.067 0.040 3371 0.453 0.091 0.309 0.004 0.036 3644 0.490 0.912 0.999
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Birth weight -0.034 0.037 3371 0.452 0.359 0.516 0.025 0.035 3644 0.491 0.476 0.675
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Tobacco use 0.036 0.042 3371 0.452 0.389 0.882 0.010 0.039 3644 0.490 0.790 0.922
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Alcohol use 0.008 0.030 3371 0.452 0.801 0.903 0.014 0.028 3644 0.490 0.625 0.995
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Marijuana use -0.036 0.058 3371 0.452 0.528 0.954 -0.065 0.056 3644 0.490 0.243 0.750
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Pregnancy complications 0.037 0.026 3371 0.452 0.159 0.560 -0.048 0.025 3644 0.491 0.051 0.701
smri_area_cdk_mobfrrh Cortical area rh-medialorbitofrontal Birth complications 0.067 0.029 3371 0.453 0.020 0.692 0.025 0.026 3644 0.491 0.349 0.850
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Unplanned pregnancy 0.002 0.025 3371 0.622 0.932 0.961 -0.022 0.025 3644 0.606 0.386 0.953
smri_area_cdk_mdtmrh Cortical area rh-middletemporal C-Section -0.019 0.023 3371 0.622 0.408 0.651 0.012 0.023 3644 0.606 0.609 0.745
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Gestational Age -0.097 0.034 3371 0.623 0.004 0.060 -0.087 0.032 3644 0.608 0.007 0.168
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Birth weight -0.101 0.031 3371 0.623 0.001 0.017 -0.042 0.031 3644 0.606 0.177 0.529
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Tobacco use 0.010 0.036 3371 0.622 0.789 0.958 0.016 0.034 3644 0.606 0.644 0.918
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Alcohol use 0.029 0.025 3371 0.622 0.255 0.598 0.051 0.025 3644 0.607 0.039 0.553
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Marijuana use 0.023 0.049 3371 0.622 0.642 0.991 -0.026 0.049 3644 0.606 0.598 0.860
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Pregnancy complications -0.001 0.022 3371 0.622 0.956 0.984 0.003 0.022 3644 0.606 0.876 0.963
smri_area_cdk_mdtmrh Cortical area rh-middletemporal Birth complications -0.017 0.024 3371 0.622 0.483 0.871 0.001 0.023 3644 0.606 0.972 0.987
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Unplanned pregnancy -0.043 0.035 3371 0.210 0.223 0.961 0.020 0.035 3644 0.179 0.566 0.953
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal C-Section -0.082 0.033 3371 0.211 0.013 0.123 0.026 0.032 3644 0.179 0.412 0.683
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Gestational Age -0.097 0.048 3371 0.210 0.043 0.184 0.062 0.045 3644 0.180 0.169 0.698
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Birth weight 0.041 0.043 3371 0.210 0.342 0.516 0.021 0.044 3644 0.179 0.634 0.829
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Tobacco use -0.024 0.050 3371 0.210 0.625 0.958 0.008 0.048 3644 0.179 0.876 0.945
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Alcohol use 0.044 0.035 3371 0.210 0.215 0.539 -0.008 0.035 3644 0.179 0.822 0.995
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Marijuana use -0.072 0.068 3371 0.210 0.291 0.879 -0.004 0.070 3644 0.179 0.958 0.987
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Pregnancy complications 0.024 0.031 3371 0.210 0.449 0.770 0.055 0.031 3644 0.180 0.073 0.701
smri_area_cdk_parahpalrh Cortical area rh-parahippocampal Birth complications -0.028 0.034 3371 0.210 0.408 0.834 0.019 0.033 3644 0.179 0.567 0.850
smri_area_cdk_paracnrh Cortical area rh-paracentral Unplanned pregnancy -0.028 0.035 3371 0.248 0.429 0.961 0.026 0.034 3644 0.252 0.451 0.953
smri_area_cdk_paracnrh Cortical area rh-paracentral C-Section -0.004 0.033 3371 0.248 0.892 0.948 0.002 0.031 3644 0.252 0.959 0.959
smri_area_cdk_paracnrh Cortical area rh-paracentral Gestational Age 0.071 0.047 3371 0.248 0.133 0.347 0.014 0.044 3644 0.252 0.746 0.939
smri_area_cdk_paracnrh Cortical area rh-paracentral Birth weight 0.054 0.043 3371 0.248 0.212 0.467 0.005 0.043 3644 0.252 0.898 0.992
smri_area_cdk_paracnrh Cortical area rh-paracentral Tobacco use -0.002 0.050 3371 0.248 0.971 0.980 -0.062 0.047 3644 0.252 0.192 0.602
smri_area_cdk_paracnrh Cortical area rh-paracentral Alcohol use -0.005 0.035 3371 0.248 0.884 0.932 -0.102 0.034 3644 0.254 0.003 0.194
smri_area_cdk_paracnrh Cortical area rh-paracentral Marijuana use 0.056 0.069 3371 0.248 0.413 0.879 0.062 0.068 3644 0.252 0.358 0.860
smri_area_cdk_paracnrh Cortical area rh-paracentral Pregnancy complications 0.013 0.031 3371 0.248 0.676 0.926 -0.027 0.030 3644 0.252 0.378 0.963
smri_area_cdk_paracnrh Cortical area rh-paracentral Birth complications 0.080 0.035 3371 0.249 0.020 0.692 -0.037 0.032 3644 0.252 0.250 0.830
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Unplanned pregnancy -0.031 0.035 3371 0.286 0.371 0.961 -0.032 0.034 3644 0.268 0.349 0.953
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis C-Section -0.056 0.032 3371 0.286 0.082 0.327 -0.015 0.030 3644 0.268 0.614 0.745
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Gestational Age 0.006 0.046 3371 0.286 0.890 0.945 0.010 0.042 3644 0.268 0.818 0.959
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Birth weight -0.010 0.042 3371 0.286 0.808 0.862 -0.062 0.042 3644 0.268 0.138 0.516
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Tobacco use 0.065 0.049 3371 0.286 0.185 0.740 0.039 0.047 3644 0.268 0.400 0.777
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Alcohol use -0.042 0.035 3371 0.286 0.222 0.539 -0.013 0.033 3644 0.268 0.694 0.995
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Marijuana use 0.018 0.067 3371 0.286 0.783 1.000 0.112 0.067 3644 0.269 0.097 0.517
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Pregnancy complications -0.019 0.031 3371 0.286 0.544 0.840 -0.026 0.030 3644 0.268 0.385 0.963
smri_area_cdk_parsopcrh Cortical area rh-parsopercularis Birth complications 0.001 0.034 3371 0.286 0.971 0.986 0.019 0.032 3644 0.268 0.546 0.850
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Unplanned pregnancy 0.052 0.034 3371 0.311 0.129 0.961 -0.021 0.032 3644 0.353 0.514 0.953
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis C-Section 0.066 0.031 3371 0.312 0.035 0.199 0.078 0.029 3644 0.353 0.006 0.108
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Gestational Age 0.095 0.045 3371 0.313 0.035 0.173 -0.049 0.040 3644 0.353 0.229 0.740
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Birth weight 0.040 0.042 3371 0.311 0.332 0.514 -0.003 0.040 3644 0.352 0.940 0.992
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Tobacco use 0.060 0.048 3371 0.311 0.209 0.740 0.007 0.044 3644 0.352 0.870 0.945
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Alcohol use 0.022 0.034 3371 0.311 0.526 0.883 0.005 0.032 3644 0.352 0.874 0.995
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Marijuana use -0.131 0.066 3371 0.312 0.046 0.543 -0.017 0.063 3644 0.352 0.785 0.963
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Pregnancy complications 0.063 0.030 3371 0.312 0.036 0.242 0.049 0.028 3644 0.353 0.078 0.701
smri_area_cdk_parsobisrh Cortical area rh-parsorbitalis Birth complications 0.044 0.033 3371 0.312 0.182 0.834 0.003 0.030 3644 0.352 0.923 0.965
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Unplanned pregnancy 0.014 0.036 3371 0.222 0.692 0.961 0.035 0.036 3644 0.208 0.327 0.953
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis C-Section 0.037 0.033 3371 0.222 0.271 0.516 -0.038 0.032 3644 0.208 0.238 0.463
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Gestational Age -0.023 0.048 3371 0.222 0.631 0.802 -0.033 0.045 3644 0.208 0.465 0.875
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Birth weight -0.084 0.044 3371 0.223 0.057 0.257 -0.145 0.044 3644 0.210 0.001 0.066
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Tobacco use 0.012 0.051 3371 0.222 0.811 0.958 0.136 0.049 3644 0.210 0.006 0.187
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Alcohol use -0.052 0.036 3371 0.222 0.149 0.539 -0.020 0.035 3644 0.208 0.579 0.995
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Marijuana use -0.087 0.070 3371 0.222 0.214 0.879 0.093 0.070 3644 0.208 0.188 0.631
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Pregnancy complications -0.005 0.032 3371 0.222 0.887 0.957 -0.058 0.031 3644 0.209 0.063 0.701
smri_area_cdk_parstgrisrh Cortical area rh-parstriangularis Birth complications 0.014 0.035 3371 0.222 0.692 0.871 0.023 0.033 3644 0.208 0.494 0.850
smri_area_cdk_periccrh Cortical area rh-pericalcarine Unplanned pregnancy 0.047 0.037 3371 0.176 0.200 0.961 0.006 0.035 3644 0.188 0.874 0.989
smri_area_cdk_periccrh Cortical area rh-pericalcarine C-Section -0.010 0.034 3371 0.176 0.776 0.880 -0.081 0.032 3644 0.188 0.012 0.121
smri_area_cdk_periccrh Cortical area rh-pericalcarine Gestational Age -0.079 0.051 3371 0.175 0.121 0.347 0.099 0.047 3644 0.192 0.036 0.313
smri_area_cdk_periccrh Cortical area rh-pericalcarine Birth weight 0.047 0.044 3371 0.177 0.287 0.484 -0.012 0.043 3644 0.188 0.780 0.964
smri_area_cdk_periccrh Cortical area rh-pericalcarine Tobacco use -0.031 0.052 3371 0.176 0.558 0.958 0.022 0.049 3644 0.188 0.646 0.918
smri_area_cdk_periccrh Cortical area rh-pericalcarine Alcohol use -0.077 0.037 3371 0.177 0.038 0.434 -0.008 0.035 3644 0.189 0.828 0.995
smri_area_cdk_periccrh Cortical area rh-pericalcarine Marijuana use 0.051 0.071 3371 0.176 0.469 0.903 0.114 0.070 3644 0.189 0.101 0.517
smri_area_cdk_periccrh Cortical area rh-pericalcarine Pregnancy complications -0.043 0.033 3371 0.176 0.189 0.560 -0.011 0.031 3644 0.188 0.728 0.963
smri_area_cdk_periccrh Cortical area rh-pericalcarine Birth complications -0.056 0.035 3371 0.176 0.112 0.834 -0.018 0.032 3644 0.188 0.586 0.850
smri_area_cdk_postcnrh Cortical area rh-postcentral Unplanned pregnancy -0.001 0.028 3371 0.530 0.964 0.974 -0.027 0.027 3644 0.523 0.314 0.953
smri_area_cdk_postcnrh Cortical area rh-postcentral C-Section -0.014 0.026 3371 0.530 0.598 0.753 0.016 0.025 3644 0.523 0.516 0.745
smri_area_cdk_postcnrh Cortical area rh-postcentral Gestational Age -0.039 0.037 3371 0.530 0.303 0.543 -0.084 0.036 3644 0.525 0.019 0.253
smri_area_cdk_postcnrh Cortical area rh-postcentral Birth weight -0.049 0.034 3371 0.530 0.155 0.438 0.001 0.034 3644 0.523 0.986 0.992
smri_area_cdk_postcnrh Cortical area rh-postcentral Tobacco use -0.040 0.039 3371 0.530 0.313 0.855 -0.029 0.038 3644 0.523 0.443 0.814
smri_area_cdk_postcnrh Cortical area rh-postcentral Alcohol use 0.026 0.028 3371 0.530 0.359 0.748 -0.057 0.027 3644 0.524 0.037 0.553
smri_area_cdk_postcnrh Cortical area rh-postcentral Marijuana use -0.045 0.054 3371 0.530 0.404 0.879 -0.023 0.054 3644 0.523 0.676 0.884
smri_area_cdk_postcnrh Cortical area rh-postcentral Pregnancy complications -0.034 0.025 3371 0.530 0.169 0.560 0.005 0.024 3644 0.523 0.823 0.963
smri_area_cdk_postcnrh Cortical area rh-postcentral Birth complications -0.003 0.027 3371 0.530 0.905 0.965 -0.053 0.025 3644 0.524 0.037 0.579
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Unplanned pregnancy 0.011 0.033 3371 0.326 0.744 0.961 0.001 0.034 3644 0.265 0.972 0.989
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate C-Section -0.006 0.031 3371 0.326 0.858 0.948 -0.014 0.030 3644 0.265 0.639 0.762
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Gestational Age -0.009 0.045 3371 0.326 0.833 0.917 0.009 0.044 3644 0.265 0.841 0.970
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Birth weight -0.081 0.041 3371 0.327 0.047 0.228 -0.002 0.042 3644 0.265 0.964 0.992
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Tobacco use -0.020 0.047 3371 0.326 0.674 0.958 -0.091 0.046 3644 0.267 0.050 0.355
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Alcohol use 0.043 0.033 3371 0.326 0.191 0.539 -0.063 0.034 3644 0.267 0.061 0.553
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Marijuana use -0.015 0.064 3371 0.326 0.814 1.000 -0.038 0.067 3644 0.265 0.569 0.860
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Pregnancy complications -0.020 0.029 3371 0.326 0.494 0.801 0.006 0.030 3644 0.265 0.831 0.963
smri_area_cdk_ptcaterh Cortical area rh-posteriorcingulate Birth complications -0.007 0.032 3371 0.326 0.822 0.947 -0.020 0.031 3644 0.265 0.514 0.850
smri_area_cdk_precnrh Cortical area rh-precentral Unplanned pregnancy -0.068 0.030 3371 0.456 0.022 0.961 -0.012 0.028 3644 0.506 0.653 0.953
smri_area_cdk_precnrh Cortical area rh-precentral C-Section 0.019 0.028 3371 0.455 0.481 0.696 0.029 0.025 3644 0.506 0.238 0.463
smri_area_cdk_precnrh Cortical area rh-precentral Gestational Age 0.035 0.039 3371 0.455 0.364 0.563 0.023 0.036 3644 0.506 0.523 0.875
smri_area_cdk_precnrh Cortical area rh-precentral Birth weight 0.057 0.037 3371 0.455 0.120 0.389 0.005 0.035 3644 0.506 0.893 0.992
smri_area_cdk_precnrh Cortical area rh-precentral Tobacco use -0.048 0.042 3371 0.455 0.257 0.793 -0.003 0.038 3644 0.506 0.939 0.982
smri_area_cdk_precnrh Cortical area rh-precentral Alcohol use -0.004 0.030 3371 0.455 0.905 0.932 0.004 0.028 3644 0.506 0.880 0.995
smri_area_cdk_precnrh Cortical area rh-precentral Marijuana use -0.069 0.058 3371 0.455 0.237 0.879 -0.038 0.055 3644 0.506 0.490 0.860
smri_area_cdk_precnrh Cortical area rh-precentral Pregnancy complications 0.009 0.026 3371 0.455 0.736 0.926 -0.023 0.024 3644 0.506 0.344 0.963
smri_area_cdk_precnrh Cortical area rh-precentral Birth complications -0.017 0.029 3371 0.455 0.568 0.871 0.032 0.026 3644 0.506 0.214 0.830
smri_area_cdk_pcrh Cortical area rh-precuneus Unplanned pregnancy -0.001 0.028 3371 0.501 0.974 0.974 -0.012 0.028 3644 0.481 0.667 0.953
smri_area_cdk_pcrh Cortical area rh-precuneus C-Section 0.058 0.026 3371 0.502 0.028 0.172 -0.001 0.025 3644 0.481 0.956 0.959
smri_area_cdk_pcrh Cortical area rh-precuneus Gestational Age 0.072 0.038 3371 0.503 0.060 0.225 0.025 0.036 3644 0.481 0.494 0.875
smri_area_cdk_pcrh Cortical area rh-precuneus Birth weight -0.055 0.035 3371 0.502 0.116 0.389 0.029 0.035 3644 0.481 0.408 0.609
smri_area_cdk_pcrh Cortical area rh-precuneus Tobacco use -0.017 0.040 3371 0.502 0.673 0.958 0.016 0.038 3644 0.481 0.670 0.918
smri_area_cdk_pcrh Cortical area rh-precuneus Alcohol use 0.069 0.028 3371 0.501 0.015 0.396 0.000 0.028 3644 0.481 0.995 0.995
smri_area_cdk_pcrh Cortical area rh-precuneus Marijuana use -0.024 0.055 3371 0.501 0.655 0.991 -0.035 0.055 3644 0.481 0.526 0.860
smri_area_cdk_pcrh Cortical area rh-precuneus Pregnancy complications -0.027 0.025 3371 0.502 0.282 0.686 -0.010 0.025 3644 0.481 0.687 0.963
smri_area_cdk_pcrh Cortical area rh-precuneus Birth complications 0.015 0.027 3371 0.502 0.598 0.871 0.019 0.026 3644 0.481 0.471 0.850
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Unplanned pregnancy -0.039 0.034 3371 0.288 0.244 0.961 0.014 0.033 3644 0.279 0.675 0.953
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate C-Section 0.004 0.032 3371 0.288 0.890 0.948 -0.049 0.030 3644 0.279 0.098 0.393
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Gestational Age 0.031 0.046 3371 0.288 0.503 0.698 -0.002 0.043 3644 0.279 0.957 0.999
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Birth weight -0.085 0.042 3371 0.288 0.041 0.228 0.004 0.041 3644 0.279 0.929 0.992
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Tobacco use -0.013 0.048 3371 0.288 0.782 0.958 -0.011 0.045 3644 0.279 0.810 0.922
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Alcohol use 0.010 0.034 3371 0.287 0.770 0.903 -0.067 0.033 3644 0.281 0.043 0.553
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Marijuana use 0.011 0.066 3371 0.288 0.870 1.000 -0.032 0.065 3644 0.279 0.620 0.860
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Pregnancy complications -0.007 0.030 3371 0.287 0.816 0.942 -0.012 0.029 3644 0.279 0.675 0.963
smri_area_cdk_rracaterh Cortical area rh-rostralanteriorcingulate Birth complications -0.028 0.033 3371 0.287 0.394 0.834 -0.032 0.031 3644 0.279 0.296 0.850
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Unplanned pregnancy 0.012 0.025 3371 0.595 0.625 0.961 -0.014 0.025 3644 0.591 0.574 0.953
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal C-Section 0.034 0.024 3371 0.595 0.146 0.431 0.012 0.023 3644 0.591 0.591 0.745
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Gestational Age 0.066 0.034 3371 0.594 0.056 0.222 0.035 0.032 3644 0.591 0.274 0.747
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Birth weight 0.079 0.031 3371 0.595 0.011 0.106 0.028 0.031 3644 0.591 0.373 0.609
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Tobacco use 0.006 0.036 3371 0.595 0.874 0.974 -0.030 0.034 3644 0.591 0.376 0.752
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Alcohol use -0.013 0.025 3371 0.595 0.612 0.885 -0.002 0.025 3644 0.591 0.937 0.995
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Marijuana use 0.000 0.049 3371 0.595 0.994 1.000 -0.119 0.049 3644 0.591 0.016 0.269
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Pregnancy complications 0.062 0.022 3371 0.595 0.006 0.152 0.026 0.022 3644 0.591 0.244 0.963
smri_area_cdk_rrmdfrrh Cortical area rh-rostralmiddlefrontal Birth complications -0.016 0.025 3371 0.595 0.519 0.871 0.025 0.023 3644 0.591 0.288 0.850
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Unplanned pregnancy 0.020 0.023 3371 0.684 0.389 0.961 -0.035 0.022 3644 0.692 0.117 0.953
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal C-Section 0.010 0.021 3371 0.684 0.635 0.771 -0.006 0.020 3644 0.692 0.763 0.876
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Gestational Age 0.094 0.030 3371 0.686 0.002 0.035 0.050 0.028 3644 0.692 0.080 0.498
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Birth weight 0.007 0.028 3371 0.684 0.804 0.862 0.034 0.028 3644 0.692 0.215 0.529
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Tobacco use 0.009 0.033 3371 0.684 0.792 0.958 0.011 0.031 3644 0.692 0.729 0.922
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Alcohol use -0.008 0.023 3371 0.684 0.722 0.903 0.011 0.022 3644 0.692 0.633 0.995
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Marijuana use 0.032 0.045 3371 0.684 0.478 0.903 0.011 0.044 3644 0.692 0.794 0.963
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Pregnancy complications 0.019 0.020 3371 0.684 0.353 0.706 0.014 0.020 3644 0.692 0.488 0.963
smri_area_cdk_sufrrh Cortical area rh-superiorfrontal Birth complications 0.037 0.022 3371 0.685 0.095 0.834 0.006 0.021 3644 0.692 0.782 0.917
smri_area_cdk_suplrh Cortical area rh-superiorparietal Unplanned pregnancy 0.014 0.029 3371 0.500 0.623 0.961 0.026 0.029 3644 0.485 0.368 0.953
smri_area_cdk_suplrh Cortical area rh-superiorparietal C-Section 0.071 0.027 3371 0.501 0.008 0.123 -0.017 0.026 3644 0.485 0.517 0.745
smri_area_cdk_suplrh Cortical area rh-superiorparietal Gestational Age 0.009 0.038 3371 0.500 0.813 0.917 -0.015 0.037 3644 0.485 0.681 0.939
smri_area_cdk_suplrh Cortical area rh-superiorparietal Birth weight 0.043 0.035 3371 0.500 0.222 0.467 0.044 0.036 3644 0.485 0.218 0.529
smri_area_cdk_suplrh Cortical area rh-superiorparietal Tobacco use 0.038 0.041 3371 0.500 0.352 0.855 0.065 0.039 3644 0.485 0.100 0.463
smri_area_cdk_suplrh Cortical area rh-superiorparietal Alcohol use -0.024 0.029 3371 0.500 0.405 0.748 0.010 0.028 3644 0.485 0.735 0.995
smri_area_cdk_suplrh Cortical area rh-superiorparietal Marijuana use 0.047 0.056 3371 0.500 0.401 0.879 0.035 0.057 3644 0.485 0.536 0.860
smri_area_cdk_suplrh Cortical area rh-superiorparietal Pregnancy complications 0.000 0.025 3371 0.500 0.988 0.988 0.021 0.025 3644 0.485 0.412 0.963
smri_area_cdk_suplrh Cortical area rh-superiorparietal Birth complications 0.005 0.028 3371 0.500 0.851 0.949 0.014 0.027 3644 0.485 0.592 0.850
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Unplanned pregnancy 0.026 0.025 3371 0.637 0.293 0.961 0.024 0.024 3644 0.644 0.310 0.953
smri_area_cdk_sutmrh Cortical area rh-superiortemporal C-Section -0.011 0.023 3371 0.637 0.624 0.771 0.008 0.022 3644 0.643 0.717 0.841
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Gestational Age 0.002 0.034 3371 0.637 0.946 0.962 0.007 0.031 3644 0.643 0.818 0.959
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Birth weight -0.007 0.030 3371 0.637 0.811 0.862 -0.009 0.030 3644 0.643 0.765 0.963
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Tobacco use 0.007 0.035 3371 0.637 0.846 0.959 -0.072 0.033 3644 0.644 0.028 0.314
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Alcohol use 0.008 0.025 3371 0.637 0.756 0.903 -0.019 0.024 3644 0.643 0.416 0.995
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Marijuana use 0.002 0.047 3371 0.637 0.966 1.000 -0.004 0.047 3644 0.643 0.936 0.987
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Pregnancy complications -0.021 0.022 3371 0.637 0.330 0.701 0.016 0.021 3644 0.643 0.456 0.963
smri_area_cdk_sutmrh Cortical area rh-superiortemporal Birth complications 0.015 0.024 3371 0.637 0.515 0.871 0.032 0.022 3644 0.643 0.149 0.696
smri_area_cdk_smrh Cortical area rh-supramarginal Unplanned pregnancy 0.010 0.030 3371 0.445 0.746 0.961 -0.008 0.029 3644 0.446 0.785 0.953
smri_area_cdk_smrh Cortical area rh-supramarginal C-Section -0.022 0.028 3371 0.446 0.438 0.654 -0.014 0.027 3644 0.447 0.587 0.745
smri_area_cdk_smrh Cortical area rh-supramarginal Gestational Age -0.053 0.041 3371 0.446 0.194 0.440 -0.114 0.038 3644 0.449 0.003 0.168
smri_area_cdk_smrh Cortical area rh-supramarginal Birth weight 0.006 0.037 3371 0.445 0.863 0.889 -0.025 0.037 3644 0.447 0.503 0.698
smri_area_cdk_smrh Cortical area rh-supramarginal Tobacco use -0.056 0.043 3371 0.445 0.191 0.740 0.025 0.040 3644 0.447 0.539 0.918
smri_area_cdk_smrh Cortical area rh-supramarginal Alcohol use 0.041 0.030 3371 0.446 0.179 0.539 0.023 0.029 3644 0.447 0.427 0.995
smri_area_cdk_smrh Cortical area rh-supramarginal Marijuana use -0.012 0.058 3371 0.445 0.841 1.000 0.075 0.058 3644 0.447 0.195 0.631
smri_area_cdk_smrh Cortical area rh-supramarginal Pregnancy complications -0.005 0.027 3371 0.445 0.845 0.952 -0.001 0.026 3644 0.446 0.966 0.979
smri_area_cdk_smrh Cortical area rh-supramarginal Birth complications 0.014 0.029 3371 0.445 0.629 0.871 0.022 0.027 3644 0.446 0.429 0.850
smri_area_cdk_frpolerh Cortical area rh-frontalpole Unplanned pregnancy 0.023 0.036 3371 0.186 0.531 0.961 -0.014 0.035 3644 0.216 0.681 0.953
smri_area_cdk_frpolerh Cortical area rh-frontalpole C-Section 0.048 0.034 3371 0.187 0.158 0.433 0.079 0.031 3644 0.218 0.012 0.121
smri_area_cdk_frpolerh Cortical area rh-frontalpole Gestational Age 0.046 0.048 3371 0.187 0.347 0.556 -0.029 0.044 3644 0.216 0.519 0.875
smri_area_cdk_frpolerh Cortical area rh-frontalpole Birth weight 0.066 0.045 3371 0.187 0.139 0.411 0.003 0.044 3644 0.216 0.948 0.992
smri_area_cdk_frpolerh Cortical area rh-frontalpole Tobacco use 0.014 0.051 3371 0.186 0.792 0.958 -0.069 0.048 3644 0.216 0.153 0.555
smri_area_cdk_frpolerh Cortical area rh-frontalpole Alcohol use -0.030 0.036 3371 0.187 0.413 0.748 0.036 0.035 3644 0.216 0.296 0.960
smri_area_cdk_frpolerh Cortical area rh-frontalpole Marijuana use -0.051 0.071 3371 0.186 0.468 0.903 -0.001 0.069 3644 0.216 0.988 0.988
smri_area_cdk_frpolerh Cortical area rh-frontalpole Pregnancy complications 0.024 0.032 3371 0.187 0.453 0.770 -0.024 0.031 3644 0.216 0.434 0.963
smri_area_cdk_frpolerh Cortical area rh-frontalpole Birth complications -0.052 0.036 3371 0.186 0.141 0.834 0.076 0.033 3644 0.218 0.020 0.579
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Unplanned pregnancy 0.036 0.038 3371 0.140 0.338 0.961 0.020 0.037 3644 0.124 0.582 0.953
smri_area_cdk_tmpolerh Cortical area rh-temporalpole C-Section 0.011 0.035 3371 0.141 0.751 0.880 0.056 0.034 3644 0.125 0.093 0.393
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Gestational Age 0.162 0.050 3371 0.146 0.001 0.035 0.023 0.048 3644 0.124 0.631 0.904
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Birth weight 0.014 0.046 3371 0.140 0.767 0.855 0.081 0.046 3644 0.125 0.079 0.516
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Tobacco use -0.019 0.053 3371 0.140 0.715 0.958 0.057 0.051 3644 0.124 0.269 0.619
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Alcohol use 0.052 0.038 3371 0.141 0.171 0.539 0.036 0.037 3644 0.124 0.329 0.988
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Marijuana use -0.029 0.073 3371 0.140 0.690 0.998 0.021 0.074 3644 0.124 0.777 0.963
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Pregnancy complications 0.041 0.033 3371 0.141 0.218 0.618 0.042 0.033 3644 0.125 0.194 0.963
smri_area_cdk_tmpolerh Cortical area rh-temporalpole Birth complications 0.045 0.037 3371 0.141 0.216 0.834 0.031 0.035 3644 0.124 0.377 0.850
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Unplanned pregnancy 0.004 0.035 3371 0.284 0.902 0.961 -0.046 0.034 3644 0.257 0.179 0.953
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal C-Section -0.038 0.032 3371 0.284 0.229 0.502 -0.040 0.031 3644 0.257 0.191 0.463
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Gestational Age -0.054 0.045 3371 0.284 0.233 0.456 -0.038 0.044 3644 0.257 0.390 0.875
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Birth weight 0.026 0.042 3371 0.284 0.542 0.659 -0.036 0.043 3644 0.257 0.399 0.609
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Tobacco use -0.011 0.049 3371 0.284 0.817 0.958 -0.013 0.047 3644 0.257 0.788 0.922
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Alcohol use 0.085 0.034 3371 0.285 0.014 0.396 -0.026 0.034 3644 0.257 0.448 0.995
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Marijuana use 0.000 0.067 3371 0.284 1.000 1.000 -0.008 0.068 3644 0.257 0.908 0.980
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Pregnancy complications 0.008 0.031 3371 0.284 0.786 0.942 -0.018 0.030 3644 0.257 0.545 0.963
smri_area_cdk_trvtmrh Cortical area rh-transversetemporal Birth complications 0.015 0.034 3371 0.284 0.665 0.871 0.047 0.032 3644 0.257 0.140 0.696
smri_area_cdk_insularh Cortical area rh-insula Unplanned pregnancy 0.039 0.031 3371 0.381 0.209 0.961 0.031 0.030 3644 0.384 0.305 0.953
smri_area_cdk_insularh Cortical area rh-insula C-Section -0.033 0.029 3371 0.382 0.252 0.510 -0.041 0.028 3644 0.384 0.142 0.430
smri_area_cdk_insularh Cortical area rh-insula Gestational Age -0.003 0.043 3371 0.381 0.948 0.962 0.007 0.040 3644 0.384 0.869 0.982
smri_area_cdk_insularh Cortical area rh-insula Birth weight -0.120 0.038 3371 0.382 0.002 0.024 -0.077 0.038 3644 0.384 0.044 0.516
smri_area_cdk_insularh Cortical area rh-insula Tobacco use 0.028 0.044 3371 0.381 0.525 0.958 0.117 0.042 3644 0.384 0.005 0.187
smri_area_cdk_insularh Cortical area rh-insula Alcohol use -0.030 0.031 3371 0.381 0.340 0.746 0.004 0.030 3644 0.384 0.903 0.995
smri_area_cdk_insularh Cortical area rh-insula Marijuana use -0.036 0.061 3371 0.381 0.547 0.954 0.111 0.060 3644 0.384 0.064 0.517
smri_area_cdk_insularh Cortical area rh-insula Pregnancy complications -0.040 0.028 3371 0.382 0.151 0.560 0.009 0.027 3644 0.384 0.750 0.963
smri_area_cdk_insularh Cortical area rh-insula Birth complications 0.014 0.030 3371 0.381 0.650 0.871 0.000 0.028 3644 0.384 0.995 0.995
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Unplanned pregnancy -0.032 0.041 3371 0.004 0.435 0.967 -0.018 0.040 3644 0.002 0.650 0.935
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus C-Section -0.085 0.038 3371 0.006 0.024 0.134 -0.041 0.036 3644 0.002 0.246 0.668
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Gestational Age -0.169 0.053 3371 0.008 0.002 0.009 -0.072 0.050 3644 0.004 0.152 0.225
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Birth weight -0.091 0.050 3371 0.006 0.067 0.163 -0.092 0.049 3644 0.004 0.060 0.145
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Tobacco use 0.049 0.058 3371 0.004 0.394 0.911 0.010 0.055 3644 0.002 0.848 0.964
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Alcohol use 0.038 0.041 3371 0.004 0.349 0.724 0.041 0.039 3644 0.002 0.295 0.691
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Marijuana use 0.021 0.079 3371 0.004 0.788 0.983 -0.009 0.079 3644 0.002 0.905 0.935
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Pregnancy complications -0.041 0.036 3371 0.005 0.254 0.617 0.008 0.035 3644 0.002 0.809 0.906
smri_sulc_cdk_banksstslh Sulcal depth lh-Banks of Superior Temporal Sulcus Birth complications -0.049 0.040 3371 0.005 0.221 0.501 -0.034 0.037 3644 0.002 0.357 0.684
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Unplanned pregnancy -0.001 0.040 3371 0.010 0.984 0.984 -0.010 0.039 3644 0.014 0.806 0.966
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate C-Section 0.014 0.037 3371 0.010 0.710 0.779 0.035 0.036 3644 0.014 0.324 0.708
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Gestational Age 0.013 0.054 3371 0.010 0.813 0.904 -0.011 0.051 3644 0.014 0.823 0.880
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Birth weight 0.186 0.049 3371 0.014 0.000 0.001 0.114 0.049 3644 0.016 0.018 0.052
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Tobacco use -0.039 0.057 3371 0.011 0.495 0.911 0.014 0.054 3644 0.014 0.797 0.953
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Alcohol use -0.037 0.040 3371 0.011 0.361 0.724 0.035 0.039 3644 0.014 0.377 0.699
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Marijuana use -0.139 0.078 3371 0.011 0.076 0.724 -0.073 0.078 3644 0.014 0.349 0.848
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Pregnancy complications 0.062 0.036 3371 0.011 0.080 0.514 -0.022 0.035 3644 0.014 0.524 0.751
smri_sulc_cdk_cdacatelh Sulcal depth lh-caudalanteriorcingulate Birth complications -0.056 0.039 3371 0.011 0.152 0.435 -0.009 0.037 3644 0.014 0.804 0.943
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Unplanned pregnancy 0.013 0.041 3371 0.007 0.745 0.967 0.038 0.039 3644 0.009 0.337 0.935
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal C-Section 0.004 0.038 3371 0.007 0.924 0.938 -0.047 0.036 3644 0.009 0.190 0.614
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Gestational Age 0.006 0.054 3371 0.007 0.915 0.928 0.110 0.050 3644 0.009 0.029 0.066
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Birth weight 0.019 0.050 3371 0.007 0.708 0.789 -0.002 0.049 3644 0.008 0.970 0.970
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Tobacco use -0.044 0.057 3371 0.007 0.445 0.911 -0.063 0.054 3644 0.009 0.249 0.611
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Alcohol use -0.052 0.041 3371 0.008 0.196 0.700 -0.038 0.039 3644 0.008 0.331 0.699
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Marijuana use -0.031 0.079 3371 0.007 0.692 0.983 -0.117 0.078 3644 0.009 0.135 0.744
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Pregnancy complications 0.003 0.036 3371 0.007 0.926 0.954 0.047 0.035 3644 0.009 0.176 0.458
smri_sulc_cdk_cdmdfrlh Sulcal depth lh-caudalmiddlefrontal Birth complications -0.056 0.040 3371 0.008 0.160 0.435 0.037 0.037 3644 0.009 0.312 0.684
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Unplanned pregnancy -0.001 0.041 3371 0.010 0.974 0.984 0.048 0.040 3644 0.012 0.223 0.935
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus C-Section -0.020 0.038 3371 0.010 0.593 0.725 0.004 0.036 3644 0.011 0.920 0.953
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Gestational Age 0.091 0.055 3371 0.012 0.096 0.181 0.005 0.052 3644 0.011 0.930 0.944
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Birth weight -0.084 0.050 3371 0.011 0.092 0.195 0.019 0.049 3644 0.012 0.700 0.831
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Tobacco use -0.002 0.058 3371 0.010 0.979 0.994 0.022 0.055 3644 0.012 0.693 0.943
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Alcohol use 0.034 0.041 3371 0.010 0.411 0.724 0.067 0.040 3644 0.012 0.091 0.687
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Marijuana use 0.078 0.079 3371 0.011 0.321 0.786 0.029 0.079 3644 0.011 0.708 0.908
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Pregnancy complications 0.080 0.036 3371 0.012 0.027 0.300 0.017 0.035 3644 0.012 0.623 0.785
smri_sulc_cdk_cuneuslh Sulcal depth lh-cuneus Birth complications 0.085 0.039 3371 0.012 0.032 0.376 0.001 0.037 3644 0.011 0.976 0.976
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Unplanned pregnancy 0.047 0.041 3371 0.007 0.249 0.967 -0.017 0.040 3644 0.005 0.671 0.935
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal C-Section -0.055 0.038 3371 0.008 0.149 0.440 -0.008 0.036 3644 0.005 0.817 0.937
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Gestational Age -0.161 0.054 3371 0.010 0.003 0.015 -0.060 0.051 3644 0.005 0.236 0.321
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Birth weight -0.186 0.050 3371 0.009 0.000 0.001 -0.130 0.049 3644 0.006 0.008 0.026
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Tobacco use 0.095 0.058 3371 0.008 0.102 0.508 0.106 0.055 3644 0.006 0.051 0.349
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Alcohol use 0.000 0.041 3371 0.007 0.996 0.996 0.028 0.039 3644 0.005 0.483 0.752
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Marijuana use 0.027 0.079 3371 0.007 0.736 0.983 -0.003 0.078 3644 0.005 0.965 0.965
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Pregnancy complications -0.059 0.036 3371 0.008 0.101 0.526 -0.062 0.035 3644 0.006 0.075 0.298
smri_sulc_cdk_ehinallh Sulcal depth lh-entorhinal Birth complications -0.057 0.040 3371 0.008 0.152 0.435 -0.022 0.037 3644 0.005 0.547 0.886
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Unplanned pregnancy -0.019 0.040 3371 0.016 0.631 0.967 0.044 0.039 3644 0.020 0.257 0.935
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform C-Section 0.137 0.037 3371 0.021 0.000 0.008 0.100 0.035 3644 0.022 0.005 0.055
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Gestational Age 0.176 0.053 3371 0.021 0.001 0.006 0.210 0.050 3644 0.026 0.000 0.000
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Birth weight 0.120 0.049 3371 0.018 0.015 0.046 0.097 0.048 3644 0.021 0.045 0.113
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Tobacco use -0.063 0.057 3371 0.016 0.270 0.791 -0.018 0.054 3644 0.020 0.736 0.953
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Alcohol use -0.005 0.040 3371 0.016 0.904 0.996 -0.020 0.039 3644 0.020 0.614 0.773
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Marijuana use -0.013 0.078 3371 0.016 0.870 0.996 0.030 0.078 3644 0.020 0.702 0.908
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Pregnancy complications 0.048 0.035 3371 0.017 0.177 0.572 0.096 0.035 3644 0.022 0.005 0.182
smri_sulc_cdk_fusiformlh Sulcal depth lh-fusiform Birth complications 0.072 0.039 3371 0.017 0.066 0.376 0.095 0.036 3644 0.022 0.009 0.253
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Unplanned pregnancy -0.007 0.040 3371 0.027 0.870 0.967 0.047 0.039 3644 0.022 0.230 0.935
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal C-Section 0.073 0.036 3371 0.028 0.044 0.201 -0.022 0.035 3644 0.022 0.536 0.759
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Gestational Age 0.064 0.050 3371 0.028 0.201 0.297 0.002 0.050 3644 0.021 0.971 0.971
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Birth weight 0.035 0.048 3371 0.027 0.472 0.595 0.052 0.048 3644 0.022 0.284 0.420
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Tobacco use -0.007 0.056 3371 0.027 0.903 0.994 0.022 0.054 3644 0.022 0.683 0.943
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Alcohol use -0.046 0.039 3371 0.028 0.243 0.724 -0.033 0.039 3644 0.022 0.394 0.699
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Marijuana use 0.018 0.078 3371 0.027 0.814 0.983 -0.097 0.078 3644 0.022 0.214 0.744
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Pregnancy complications -0.045 0.035 3371 0.028 0.193 0.572 -0.026 0.034 3644 0.022 0.455 0.751
smri_sulc_cdk_ifpllh Sulcal depth lh-inferiorparietal Birth complications 0.074 0.039 3371 0.028 0.059 0.376 0.047 0.037 3644 0.022 0.200 0.684
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Unplanned pregnancy 0.042 0.041 3371 0.007 0.306 0.967 -0.028 0.040 3644 0.003 0.482 0.935
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal C-Section -0.073 0.038 3371 0.008 0.053 0.226 -0.070 0.035 3644 0.004 0.049 0.237
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Gestational Age -0.190 0.054 3371 0.011 0.000 0.003 -0.187 0.049 3644 0.007 0.000 0.001
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Birth weight -0.186 0.050 3371 0.011 0.000 0.001 -0.171 0.049 3644 0.007 0.000 0.003
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Tobacco use 0.143 0.058 3371 0.009 0.013 0.151 0.013 0.054 3644 0.003 0.805 0.953
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Alcohol use 0.037 0.041 3371 0.007 0.359 0.724 -0.004 0.039 3644 0.003 0.919 0.968
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Marijuana use 0.116 0.079 3371 0.007 0.143 0.724 0.025 0.078 3644 0.003 0.745 0.908
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Pregnancy complications -0.086 0.036 3371 0.009 0.017 0.293 -0.051 0.035 3644 0.003 0.142 0.455
smri_sulc_cdk_iftmlh Sulcal depth lh-inferiortemporal Birth complications 0.013 0.040 3371 0.007 0.749 0.878 -0.090 0.037 3644 0.005 0.015 0.253
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Unplanned pregnancy 0.017 0.040 3371 0.001 0.675 0.967 0.033 0.039 3644 0.006 0.409 0.935
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate C-Section 0.111 0.037 3371 0.005 0.003 0.033 0.110 0.036 3644 0.009 0.002 0.047
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Gestational Age 0.168 0.054 3371 0.006 0.002 0.010 0.032 0.051 3644 0.007 0.531 0.616
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Birth weight -0.069 0.049 3371 0.001 0.164 0.318 0.131 0.049 3644 0.009 0.007 0.025
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Tobacco use -0.017 0.057 3371 0.001 0.768 0.994 -0.093 0.054 3644 0.007 0.089 0.427
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Alcohol use 0.000 0.040 3371 0.001 0.995 0.996 -0.055 0.039 3644 0.007 0.161 0.687
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Marijuana use 0.134 0.078 3371 0.002 0.085 0.724 -0.086 0.078 3644 0.006 0.272 0.772
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Pregnancy complications 0.036 0.036 3371 0.002 0.309 0.617 0.046 0.035 3644 0.007 0.187 0.458
smri_sulc_cdk_ihcatelh Sulcal depth lh-isthmuscingulate Birth complications 0.076 0.039 3371 0.003 0.053 0.376 -0.039 0.037 3644 0.006 0.293 0.684
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Unplanned pregnancy -0.018 0.041 3371 0.011 0.654 0.967 -0.015 0.040 3644 0.012 0.704 0.938
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital C-Section 0.004 0.038 3371 0.011 0.924 0.938 -0.001 0.036 3644 0.012 0.971 0.985
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Gestational Age -0.085 0.054 3371 0.011 0.117 0.199 0.086 0.051 3644 0.014 0.090 0.143
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Birth weight 0.041 0.050 3371 0.011 0.411 0.559 0.026 0.049 3644 0.013 0.591 0.758
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Tobacco use 0.007 0.057 3371 0.011 0.897 0.994 -0.001 0.055 3644 0.012 0.984 0.999
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Alcohol use -0.004 0.041 3371 0.011 0.929 0.996 0.043 0.040 3644 0.013 0.276 0.691
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Marijuana use -0.088 0.079 3371 0.011 0.261 0.739 0.068 0.079 3644 0.013 0.388 0.874
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Pregnancy complications 0.030 0.036 3371 0.011 0.399 0.733 0.027 0.035 3644 0.013 0.443 0.751
smri_sulc_cdk_locclh Sulcal depth lh-lateraloccipital Birth complications -0.012 0.039 3371 0.011 0.752 0.878 -0.039 0.037 3644 0.012 0.285 0.684
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Unplanned pregnancy 0.051 0.040 3371 0.025 0.203 0.967 -0.037 0.039 3644 0.032 0.350 0.935
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal C-Section 0.121 0.037 3371 0.027 0.001 0.024 0.146 0.035 3644 0.036 0.000 0.003
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Gestational Age -0.035 0.052 3371 0.024 0.509 0.653 -0.059 0.051 3644 0.031 0.249 0.332
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Birth weight -0.028 0.049 3371 0.024 0.568 0.689 0.067 0.048 3644 0.033 0.164 0.279
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Tobacco use 0.067 0.057 3371 0.024 0.242 0.784 -0.074 0.054 3644 0.032 0.172 0.514
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Alcohol use -0.049 0.040 3371 0.025 0.221 0.724 -0.031 0.039 3644 0.032 0.426 0.724
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Marijuana use 0.107 0.078 3371 0.025 0.170 0.724 0.017 0.077 3644 0.031 0.830 0.909
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Pregnancy complications 0.052 0.036 3371 0.025 0.143 0.568 0.010 0.035 3644 0.032 0.777 0.906
smri_sulc_cdk_lobfrlh Sulcal depth lh-lateralorbitofrontal Birth complications -0.010 0.039 3371 0.024 0.803 0.910 -0.015 0.036 3644 0.031 0.688 0.943
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Unplanned pregnancy -0.036 0.041 3371 0.016 0.373 0.967 0.041 0.040 3644 0.023 0.305 0.935
smri_sulc_cdk_linguallh Sulcal depth lh-lingual C-Section 0.049 0.038 3371 0.017 0.192 0.451 0.037 0.036 3644 0.023 0.298 0.697
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Gestational Age 0.086 0.055 3371 0.017 0.116 0.199 0.005 0.051 3644 0.023 0.929 0.944
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Birth weight 0.162 0.049 3371 0.020 0.001 0.006 0.069 0.049 3644 0.023 0.155 0.270
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Tobacco use 0.063 0.058 3371 0.016 0.273 0.791 0.143 0.055 3644 0.025 0.009 0.193
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Alcohol use 0.065 0.041 3371 0.016 0.113 0.582 0.070 0.039 3644 0.024 0.075 0.687
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Marijuana use -0.078 0.079 3371 0.016 0.324 0.786 0.161 0.078 3644 0.024 0.039 0.670
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Pregnancy complications 0.062 0.036 3371 0.018 0.083 0.514 -0.006 0.035 3644 0.023 0.868 0.912
smri_sulc_cdk_linguallh Sulcal depth lh-lingual Birth complications -0.042 0.039 3371 0.016 0.293 0.623 0.034 0.037 3644 0.023 0.357 0.684
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Unplanned pregnancy -0.003 0.040 3371 0.039 0.934 0.967 -0.031 0.039 3644 0.022 0.421 0.935
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal C-Section -0.036 0.037 3371 0.040 0.335 0.565 0.013 0.035 3644 0.021 0.703 0.869
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Gestational Age -0.143 0.053 3371 0.043 0.007 0.028 -0.210 0.050 3644 0.028 0.000 0.000
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Birth weight -0.192 0.048 3371 0.043 0.000 0.001 -0.243 0.048 3644 0.029 0.000 0.000
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Tobacco use 0.038 0.056 3371 0.039 0.496 0.911 0.000 0.053 3644 0.022 0.999 0.999
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Alcohol use -0.026 0.040 3371 0.039 0.517 0.782 0.091 0.039 3644 0.022 0.019 0.600
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Marijuana use 0.043 0.077 3371 0.039 0.573 0.983 0.015 0.077 3644 0.022 0.842 0.909
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Pregnancy complications -0.048 0.035 3371 0.040 0.171 0.572 -0.050 0.034 3644 0.023 0.147 0.455
smri_sulc_cdk_mobfrlh Sulcal depth lh-medialorbitofrontal Birth complications -0.062 0.039 3371 0.040 0.111 0.435 -0.037 0.036 3644 0.022 0.309 0.684
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Unplanned pregnancy -0.004 0.041 3371 0.013 0.925 0.967 0.028 0.039 3644 0.021 0.477 0.935
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal C-Section 0.043 0.038 3371 0.014 0.249 0.509 0.026 0.035 3644 0.021 0.460 0.743
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Gestational Age 0.115 0.054 3371 0.015 0.034 0.082 0.155 0.049 3644 0.025 0.002 0.007
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Birth weight 0.186 0.049 3371 0.018 0.000 0.001 0.178 0.048 3644 0.026 0.000 0.002
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Tobacco use -0.173 0.057 3371 0.016 0.003 0.065 -0.029 0.054 3644 0.021 0.594 0.902
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Alcohol use -0.079 0.040 3371 0.014 0.052 0.458 -0.033 0.039 3644 0.021 0.401 0.699
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Marijuana use -0.028 0.079 3371 0.013 0.726 0.983 -0.033 0.078 3644 0.021 0.673 0.908
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Pregnancy complications -0.007 0.036 3371 0.013 0.850 0.932 0.026 0.034 3644 0.021 0.444 0.751
smri_sulc_cdk_mdtmlh Sulcal depth lh-middletemporal Birth complications -0.100 0.039 3371 0.015 0.011 0.376 0.002 0.037 3644 0.021 0.966 0.976
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Unplanned pregnancy 0.027 0.039 3371 0.068 0.498 0.967 0.023 0.038 3644 0.068 0.552 0.935
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal C-Section -0.048 0.037 3371 0.068 0.185 0.451 -0.031 0.034 3644 0.068 0.370 0.708
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Gestational Age -0.213 0.052 3371 0.072 0.000 0.001 -0.043 0.049 3644 0.068 0.379 0.468
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Birth weight -0.041 0.048 3371 0.068 0.398 0.553 -0.171 0.047 3644 0.072 0.000 0.002
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Tobacco use 0.087 0.056 3371 0.068 0.118 0.508 0.138 0.053 3644 0.070 0.009 0.193
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Alcohol use 0.120 0.039 3371 0.071 0.002 0.154 -0.009 0.038 3644 0.068 0.820 0.914
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Marijuana use -0.122 0.076 3371 0.068 0.111 0.724 0.066 0.076 3644 0.068 0.381 0.874
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Pregnancy complications -0.041 0.035 3371 0.068 0.236 0.617 0.006 0.034 3644 0.068 0.865 0.912
smri_sulc_cdk_parahpallh Sulcal depth lh-parahippocampal Birth complications -0.067 0.038 3371 0.068 0.082 0.399 0.008 0.036 3644 0.068 0.813 0.943
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Unplanned pregnancy 0.031 0.041 3371 0.011 0.451 0.967 -0.019 0.040 3644 0.005 0.628 0.935
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral C-Section -0.001 0.037 3371 0.011 0.975 0.975 0.004 0.036 3644 0.005 0.900 0.953
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Gestational Age -0.008 0.053 3371 0.011 0.888 0.928 -0.039 0.050 3644 0.005 0.431 0.524
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Birth weight -0.049 0.050 3371 0.012 0.321 0.508 -0.028 0.049 3644 0.005 0.566 0.742
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Tobacco use 0.016 0.057 3371 0.011 0.780 0.994 0.030 0.055 3644 0.005 0.582 0.902
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Alcohol use 0.022 0.040 3371 0.011 0.583 0.812 -0.054 0.039 3644 0.005 0.172 0.687
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Marijuana use 0.112 0.079 3371 0.012 0.154 0.724 -0.021 0.079 3644 0.005 0.788 0.908
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Pregnancy complications -0.019 0.036 3371 0.011 0.602 0.835 0.044 0.035 3644 0.005 0.202 0.458
smri_sulc_cdk_paracnlh Sulcal depth lh-paracentral Birth complications 0.085 0.040 3371 0.013 0.031 0.376 -0.042 0.037 3644 0.005 0.253 0.684
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Unplanned pregnancy -0.021 0.041 3371 0.008 0.605 0.967 0.016 0.040 3644 0.004 0.687 0.935
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis C-Section -0.032 0.037 3371 0.008 0.383 0.565 -0.075 0.036 3644 0.005 0.036 0.220
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Gestational Age -0.087 0.052 3371 0.009 0.096 0.181 -0.119 0.050 3644 0.006 0.016 0.042
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Birth weight 0.029 0.049 3371 0.008 0.559 0.689 -0.020 0.049 3644 0.004 0.684 0.830
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Tobacco use 0.019 0.057 3371 0.008 0.741 0.994 -0.088 0.055 3644 0.004 0.109 0.434
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Alcohol use 0.027 0.040 3371 0.008 0.504 0.779 -0.023 0.039 3644 0.004 0.553 0.754
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Marijuana use -0.023 0.079 3371 0.008 0.769 0.983 -0.113 0.079 3644 0.004 0.151 0.744
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Pregnancy complications -0.043 0.036 3371 0.009 0.230 0.617 0.047 0.035 3644 0.004 0.175 0.458
smri_sulc_cdk_parsopclh Sulcal depth lh-parsopercularis Birth complications -0.024 0.040 3371 0.008 0.540 0.733 -0.029 0.037 3644 0.004 0.425 0.761
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Unplanned pregnancy -0.078 0.040 3371 0.015 0.050 0.967 -0.011 0.039 3644 0.012 0.775 0.966
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis C-Section 0.039 0.037 3371 0.015 0.299 0.549 0.059 0.035 3644 0.013 0.094 0.374
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Gestational Age 0.222 0.053 3371 0.021 0.000 0.001 0.146 0.050 3644 0.015 0.004 0.012
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Birth weight 0.008 0.049 3371 0.014 0.877 0.946 -0.022 0.049 3644 0.012 0.645 0.797
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Tobacco use 0.023 0.056 3371 0.014 0.684 0.994 0.015 0.054 3644 0.012 0.778 0.953
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Alcohol use -0.035 0.040 3371 0.014 0.382 0.724 0.048 0.039 3644 0.012 0.223 0.691
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Marijuana use 0.115 0.078 3371 0.015 0.138 0.724 0.023 0.078 3644 0.012 0.770 0.908
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Pregnancy complications 0.005 0.035 3371 0.014 0.887 0.947 -0.022 0.035 3644 0.012 0.516 0.751
smri_sulc_cdk_parsobislh Sulcal depth lh-parsorbitalis Birth complications 0.059 0.039 3371 0.015 0.131 0.435 0.008 0.037 3644 0.012 0.818 0.943
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Unplanned pregnancy 0.127 0.040 3371 0.014 0.002 0.115 -0.003 0.040 3644 0.016 0.946 0.987
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis C-Section 0.025 0.037 3371 0.011 0.495 0.660 0.030 0.035 3644 0.017 0.396 0.708
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Gestational Age -0.021 0.051 3371 0.011 0.676 0.798 -0.030 0.048 3644 0.016 0.535 0.616
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Birth weight -0.045 0.049 3371 0.011 0.362 0.530 0.015 0.048 3644 0.016 0.755 0.856
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Tobacco use 0.005 0.057 3371 0.011 0.927 0.994 0.026 0.054 3644 0.016 0.631 0.933
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Alcohol use -0.002 0.040 3371 0.011 0.957 0.996 0.056 0.039 3644 0.017 0.145 0.687
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Marijuana use -0.043 0.079 3371 0.011 0.580 0.983 -0.074 0.078 3644 0.017 0.341 0.848
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Pregnancy complications -0.052 0.035 3371 0.012 0.143 0.568 -0.006 0.035 3644 0.016 0.872 0.912
smri_sulc_cdk_parstgrislh Sulcal depth lh-parstriangularis Birth complications -0.024 0.040 3371 0.011 0.547 0.733 0.042 0.037 3644 0.017 0.246 0.684
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Unplanned pregnancy 0.013 0.040 3371 0.028 0.750 0.967 0.001 0.039 3644 0.033 0.971 0.987
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine C-Section -0.059 0.037 3371 0.028 0.112 0.364 -0.001 0.035 3644 0.033 0.988 0.988
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Gestational Age 0.023 0.055 3371 0.028 0.681 0.798 0.098 0.051 3644 0.036 0.055 0.096
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Birth weight 0.024 0.048 3371 0.028 0.620 0.727 0.008 0.048 3644 0.033 0.865 0.904
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Tobacco use -0.102 0.057 3371 0.028 0.073 0.494 0.056 0.054 3644 0.033 0.297 0.612
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Alcohol use -0.032 0.040 3371 0.028 0.427 0.724 0.055 0.039 3644 0.033 0.156 0.687
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Marijuana use 0.079 0.077 3371 0.028 0.304 0.786 0.149 0.077 3644 0.034 0.053 0.670
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Pregnancy complications -0.051 0.035 3371 0.028 0.152 0.568 -0.040 0.034 3644 0.033 0.247 0.494
smri_sulc_cdk_pericclh Sulcal depth lh-pericalcarine Birth complications 0.006 0.038 3371 0.028 0.880 0.932 0.006 0.036 3644 0.033 0.876 0.955
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Unplanned pregnancy -0.086 0.041 3371 0.005 0.035 0.967 -0.045 0.040 3644 0.012 0.257 0.935
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral C-Section -0.052 0.037 3371 0.004 0.168 0.451 0.071 0.035 3644 0.013 0.044 0.231
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Gestational Age 0.075 0.053 3371 0.004 0.159 0.252 0.116 0.048 3644 0.014 0.016 0.042
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Birth weight 0.001 0.050 3371 0.003 0.990 0.990 0.046 0.048 3644 0.012 0.343 0.486
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Tobacco use -0.005 0.058 3371 0.003 0.938 0.994 -0.033 0.054 3644 0.012 0.549 0.902
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Alcohol use 0.012 0.041 3371 0.003 0.761 0.958 0.000 0.039 3644 0.012 0.999 0.999
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Marijuana use 0.238 0.079 3371 0.006 0.003 0.158 -0.036 0.078 3644 0.012 0.644 0.908
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Pregnancy complications -0.010 0.036 3371 0.003 0.774 0.907 -0.024 0.035 3644 0.012 0.491 0.751
smri_sulc_cdk_postcnlh Sulcal depth lh-postcentral Birth complications 0.051 0.040 3371 0.004 0.202 0.476 0.006 0.037 3644 0.012 0.880 0.955
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Unplanned pregnancy -0.023 0.039 3371 0.020 0.554 0.967 0.004 0.038 3644 0.026 0.922 0.987
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate C-Section 0.075 0.037 3371 0.022 0.042 0.201 -0.065 0.035 3644 0.026 0.063 0.269
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Gestational Age 0.000 0.053 3371 0.020 0.999 0.999 0.146 0.050 3644 0.029 0.003 0.012
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Birth weight 0.127 0.048 3371 0.022 0.009 0.029 0.243 0.047 3644 0.034 0.000 0.000
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Tobacco use 0.046 0.056 3371 0.020 0.409 0.911 -0.039 0.053 3644 0.026 0.464 0.853
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Alcohol use -0.046 0.039 3371 0.021 0.247 0.724 0.034 0.038 3644 0.027 0.370 0.699
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Marijuana use -0.102 0.076 3371 0.021 0.181 0.724 0.032 0.076 3644 0.026 0.670 0.908
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Pregnancy complications -0.001 0.035 3371 0.020 0.972 0.972 0.069 0.034 3644 0.028 0.041 0.282
smri_sulc_cdk_ptcatelh Sulcal depth lh-posteriorcingulate Birth complications 0.001 0.038 3371 0.020 0.982 0.982 0.033 0.036 3644 0.026 0.356 0.684
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Unplanned pregnancy -0.025 0.040 3371 0.015 0.542 0.967 -0.008 0.039 3644 0.013 0.831 0.966
smri_sulc_cdk_precnlh Sulcal depth lh-precentral C-Section 0.042 0.037 3371 0.015 0.262 0.509 0.019 0.035 3644 0.013 0.595 0.793
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Gestational Age 0.130 0.053 3371 0.016 0.014 0.044 0.014 0.049 3644 0.013 0.781 0.857
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Birth weight -0.006 0.050 3371 0.014 0.911 0.953 0.058 0.049 3644 0.013 0.236 0.357
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Tobacco use 0.037 0.057 3371 0.014 0.518 0.911 0.097 0.054 3644 0.014 0.074 0.427
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Alcohol use 0.022 0.040 3371 0.015 0.585 0.812 0.017 0.039 3644 0.013 0.659 0.800
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Marijuana use -0.024 0.079 3371 0.014 0.761 0.983 0.091 0.078 3644 0.013 0.244 0.744
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Pregnancy complications 0.112 0.036 3371 0.017 0.002 0.113 0.028 0.035 3644 0.013 0.419 0.751
smri_sulc_cdk_precnlh Sulcal depth lh-precentral Birth complications 0.031 0.040 3371 0.015 0.434 0.687 0.034 0.037 3644 0.013 0.357 0.684
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Unplanned pregnancy 0.010 0.041 3371 0.002 0.810 0.967 0.110 0.040 3644 0.008 0.006 0.385
smri_sulc_cdk_pclh Sulcal depth lh-precuneus C-Section -0.067 0.038 3371 0.003 0.080 0.302 -0.090 0.036 3644 0.008 0.012 0.087
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Gestational Age 0.009 0.055 3371 0.002 0.866 0.928 0.113 0.052 3644 0.009 0.029 0.066
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Birth weight 0.098 0.050 3371 0.004 0.050 0.125 0.076 0.049 3644 0.007 0.119 0.226
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Tobacco use -0.027 0.058 3371 0.002 0.636 0.994 -0.054 0.055 3644 0.007 0.326 0.651
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Alcohol use -0.003 0.041 3371 0.002 0.934 0.996 0.000 0.040 3644 0.007 0.997 0.999
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Marijuana use 0.042 0.079 3371 0.002 0.594 0.983 0.077 0.078 3644 0.007 0.323 0.848
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Pregnancy complications 0.039 0.036 3371 0.003 0.283 0.617 0.003 0.035 3644 0.007 0.941 0.955
smri_sulc_cdk_pclh Sulcal depth lh-precuneus Birth complications -0.033 0.040 3371 0.002 0.398 0.667 -0.035 0.037 3644 0.007 0.337 0.684
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Unplanned pregnancy 0.012 0.040 3371 0.022 0.757 0.967 0.032 0.039 3644 0.016 0.415 0.935
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate C-Section 0.102 0.037 3371 0.024 0.006 0.048 0.005 0.035 3644 0.015 0.877 0.953
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Gestational Age 0.099 0.053 3371 0.023 0.061 0.134 0.132 0.051 3644 0.018 0.010 0.027
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Birth weight 0.188 0.049 3371 0.025 0.000 0.001 0.171 0.048 3644 0.019 0.000 0.003
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Tobacco use 0.033 0.056 3371 0.022 0.553 0.922 -0.094 0.054 3644 0.016 0.081 0.427
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Alcohol use -0.017 0.040 3371 0.022 0.673 0.886 -0.024 0.039 3644 0.015 0.546 0.754
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Marijuana use -0.096 0.077 3371 0.022 0.214 0.739 -0.146 0.077 3644 0.016 0.059 0.670
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Pregnancy complications 0.038 0.035 3371 0.022 0.284 0.617 0.048 0.035 3644 0.016 0.162 0.458
smri_sulc_cdk_rracatelh Sulcal depth lh-rostralanteriorcingulate Birth complications 0.022 0.039 3371 0.022 0.579 0.733 0.019 0.036 3644 0.015 0.600 0.891
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Unplanned pregnancy -0.022 0.039 3371 0.039 0.583 0.967 -0.088 0.038 3644 0.037 0.022 0.763
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal C-Section 0.007 0.037 3371 0.039 0.844 0.897 -0.025 0.035 3644 0.036 0.472 0.743
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Gestational Age 0.183 0.053 3371 0.042 0.001 0.004 0.160 0.050 3644 0.037 0.001 0.007
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Birth weight -0.004 0.048 3371 0.039 0.942 0.956 0.065 0.048 3644 0.036 0.174 0.282
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Tobacco use -0.036 0.056 3371 0.039 0.517 0.911 0.114 0.053 3644 0.038 0.032 0.267
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Alcohol use -0.036 0.039 3371 0.039 0.358 0.724 0.046 0.038 3644 0.037 0.228 0.691
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Marijuana use 0.002 0.076 3371 0.039 0.974 0.996 0.045 0.076 3644 0.036 0.556 0.905
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Pregnancy complications 0.080 0.035 3371 0.041 0.022 0.293 0.021 0.034 3644 0.036 0.541 0.751
smri_sulc_cdk_rrmdfrlh Sulcal depth lh-rostralmiddlefrontal Birth complications 0.058 0.038 3371 0.040 0.133 0.435 0.036 0.036 3644 0.037 0.310 0.684
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Unplanned pregnancy 0.061 0.040 3371 0.008 0.127 0.967 -0.007 0.038 3644 0.007 0.849 0.966
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal C-Section -0.047 0.037 3371 0.008 0.204 0.463 -0.006 0.035 3644 0.007 0.865 0.953
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Gestational Age -0.081 0.054 3371 0.010 0.130 0.215 -0.237 0.049 3644 0.020 0.000 0.000
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Birth weight -0.081 0.049 3371 0.010 0.095 0.196 -0.242 0.048 3644 0.018 0.000 0.000
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Tobacco use 0.012 0.056 3371 0.007 0.832 0.994 -0.060 0.053 3644 0.007 0.260 0.611
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Alcohol use 0.074 0.040 3371 0.010 0.061 0.462 0.049 0.038 3644 0.008 0.204 0.691
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Marijuana use 0.000 0.077 3371 0.007 0.995 0.996 0.048 0.076 3644 0.007 0.529 0.905
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Pregnancy complications 0.015 0.035 3371 0.007 0.678 0.904 -0.076 0.034 3644 0.009 0.024 0.282
smri_sulc_cdk_sufrlh Sulcal depth lh-superiorfrontal Birth complications -0.024 0.039 3371 0.008 0.527 0.733 -0.013 0.036 3644 0.007 0.711 0.943
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Unplanned pregnancy 0.051 0.040 3371 0.019 0.202 0.967 -0.056 0.039 3644 0.031 0.154 0.935
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal C-Section 0.051 0.037 3371 0.018 0.177 0.451 0.019 0.035 3644 0.031 0.587 0.793
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Gestational Age -0.163 0.054 3371 0.023 0.003 0.013 -0.067 0.051 3644 0.032 0.185 0.262
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Birth weight -0.021 0.049 3371 0.018 0.669 0.762 -0.070 0.048 3644 0.031 0.146 0.261
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Tobacco use 0.081 0.057 3371 0.018 0.157 0.620 -0.078 0.054 3644 0.031 0.147 0.514
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Alcohol use 0.031 0.040 3371 0.018 0.437 0.724 -0.110 0.039 3644 0.032 0.005 0.317
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Marijuana use -0.014 0.078 3371 0.018 0.862 0.996 -0.124 0.077 3644 0.031 0.108 0.744
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Pregnancy complications -0.002 0.036 3371 0.018 0.946 0.960 0.027 0.035 3644 0.031 0.430 0.751
smri_sulc_cdk_supllh Sulcal depth lh-superiorparietal Birth complications -0.070 0.039 3371 0.019 0.073 0.381 0.027 0.036 3644 0.031 0.461 0.804
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Unplanned pregnancy -0.003 0.040 3371 0.035 0.938 0.967 -0.036 0.039 3644 0.036 0.359 0.935
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal C-Section -0.030 0.036 3371 0.035 0.407 0.565 -0.026 0.035 3644 0.036 0.459 0.743
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Gestational Age 0.011 0.051 3371 0.035 0.825 0.904 -0.182 0.049 3644 0.040 0.000 0.001
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Birth weight -0.140 0.048 3371 0.038 0.004 0.017 -0.126 0.048 3644 0.038 0.008 0.026
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Tobacco use 0.056 0.056 3371 0.035 0.324 0.848 0.061 0.054 3644 0.037 0.260 0.611
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Alcohol use -0.023 0.040 3371 0.035 0.553 0.804 0.034 0.039 3644 0.037 0.382 0.699
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Marijuana use 0.089 0.078 3371 0.036 0.250 0.739 -0.008 0.077 3644 0.036 0.921 0.935
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Pregnancy complications 0.010 0.035 3371 0.035 0.785 0.907 -0.074 0.034 3644 0.038 0.031 0.282
smri_sulc_cdk_sutmlh Sulcal depth lh-superiortemporal Birth complications 0.075 0.039 3371 0.036 0.055 0.376 -0.053 0.036 3644 0.037 0.144 0.684
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Unplanned pregnancy -0.004 0.041 3371 -0.001 0.927 0.967 0.005 0.040 3644 0.003 0.906 0.987
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal C-Section 0.034 0.037 3371 -0.001 0.358 0.565 0.011 0.036 3644 0.003 0.757 0.903
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Gestational Age 0.120 0.051 3371 0.001 0.018 0.054 0.103 0.050 3644 0.005 0.042 0.079
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Birth weight 0.087 0.049 3371 0.000 0.076 0.172 0.121 0.049 3644 0.006 0.013 0.039
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Tobacco use -0.048 0.057 3371 -0.001 0.397 0.911 -0.129 0.055 3644 0.005 0.019 0.193
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Alcohol use -0.001 0.040 3371 -0.001 0.983 0.996 -0.056 0.040 3644 0.004 0.159 0.687
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Marijuana use 0.018 0.079 3371 -0.001 0.817 0.983 0.094 0.079 3644 0.004 0.230 0.744
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Pregnancy complications 0.010 0.036 3371 -0.001 0.770 0.907 -0.043 0.035 3644 0.003 0.223 0.460
smri_sulc_cdk_smlh Sulcal depth lh-supramarginal Birth complications 0.083 0.040 3371 0.000 0.037 0.376 0.034 0.037 3644 0.004 0.362 0.684
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Unplanned pregnancy -0.016 0.040 3371 0.004 0.701 0.967 -0.028 0.039 3644 0.008 0.485 0.935
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole C-Section -0.035 0.037 3371 0.005 0.344 0.565 0.042 0.036 3644 0.008 0.242 0.668
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Gestational Age -0.102 0.053 3371 0.007 0.054 0.123 -0.103 0.050 3644 0.011 0.039 0.077
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Birth weight -0.068 0.050 3371 0.005 0.171 0.322 -0.014 0.049 3644 0.008 0.781 0.856
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Tobacco use -0.170 0.057 3371 0.007 0.003 0.065 -0.073 0.054 3644 0.009 0.181 0.514
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Alcohol use -0.079 0.040 3371 0.005 0.052 0.458 -0.035 0.039 3644 0.009 0.376 0.699
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Marijuana use -0.212 0.079 3371 0.006 0.007 0.158 -0.062 0.078 3644 0.008 0.429 0.905
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Pregnancy complications -0.054 0.036 3371 0.005 0.129 0.568 -0.079 0.035 3644 0.010 0.023 0.282
smri_sulc_cdk_frpolelh Sulcal depth lh-frontalpole Birth complications -0.037 0.040 3371 0.005 0.352 0.642 -0.090 0.037 3644 0.010 0.014 0.253
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Unplanned pregnancy 0.034 0.039 3371 0.034 0.390 0.967 -0.020 0.037 3644 0.032 0.597 0.935
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole C-Section -0.036 0.036 3371 0.034 0.328 0.565 -0.023 0.034 3644 0.031 0.495 0.743
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Gestational Age 0.090 0.053 3371 0.035 0.089 0.181 -0.116 0.049 3644 0.031 0.017 0.042
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Birth weight -0.107 0.048 3371 0.034 0.027 0.072 -0.075 0.046 3644 0.031 0.106 0.212
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Tobacco use -0.037 0.055 3371 0.034 0.502 0.911 -0.085 0.052 3644 0.033 0.101 0.427
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Alcohol use 0.003 0.039 3371 0.034 0.945 0.996 0.041 0.037 3644 0.031 0.277 0.691
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Marijuana use -0.089 0.076 3371 0.034 0.240 0.739 0.095 0.074 3644 0.031 0.199 0.744
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Pregnancy complications 0.005 0.035 3371 0.034 0.891 0.947 -0.055 0.033 3644 0.032 0.093 0.332
smri_sulc_cdk_tmpolelh Sulcal depth lh-temporalpole Birth complications -0.003 0.038 3371 0.034 0.932 0.946 -0.051 0.035 3644 0.031 0.148 0.684
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Unplanned pregnancy -0.031 0.040 3371 0.014 0.445 0.967 0.027 0.039 3644 0.027 0.492 0.935
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal C-Section -0.042 0.037 3371 0.015 0.261 0.509 0.016 0.035 3644 0.027 0.656 0.840
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Gestational Age 0.007 0.054 3371 0.014 0.894 0.928 0.101 0.050 3644 0.026 0.043 0.080
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Birth weight 0.038 0.049 3371 0.014 0.443 0.590 -0.018 0.048 3644 0.027 0.708 0.831
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Tobacco use -0.014 0.057 3371 0.014 0.801 0.994 0.124 0.053 3644 0.029 0.020 0.193
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Alcohol use 0.032 0.040 3371 0.015 0.422 0.724 0.057 0.039 3644 0.028 0.139 0.687
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Marijuana use 0.011 0.078 3371 0.014 0.888 0.996 0.026 0.077 3644 0.027 0.732 0.908
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Pregnancy complications 0.008 0.035 3371 0.014 0.817 0.911 0.048 0.034 3644 0.027 0.162 0.458
smri_sulc_cdk_trvtmlh Sulcal depth lh-transversetemporal Birth complications -0.005 0.039 3371 0.014 0.891 0.932 0.108 0.036 3644 0.028 0.003 0.189
smri_sulc_cdk_insulalh Sulcal depth lh-insula Unplanned pregnancy -0.033 0.039 3371 0.037 0.401 0.967 0.015 0.038 3644 0.026 0.686 0.935
smri_sulc_cdk_insulalh Sulcal depth lh-insula C-Section 0.018 0.036 3371 0.036 0.614 0.733 -0.055 0.034 3644 0.027 0.110 0.416
smri_sulc_cdk_insulalh Sulcal depth lh-insula Gestational Age -0.096 0.052 3371 0.038 0.068 0.145 -0.053 0.049 3644 0.027 0.282 0.369
smri_sulc_cdk_insulalh Sulcal depth lh-insula Birth weight 0.097 0.048 3371 0.036 0.042 0.111 0.027 0.047 3644 0.026 0.567 0.742
smri_sulc_cdk_insulalh Sulcal depth lh-insula Tobacco use 0.070 0.055 3371 0.037 0.201 0.685 0.055 0.052 3644 0.027 0.294 0.612
smri_sulc_cdk_insulalh Sulcal depth lh-insula Alcohol use 0.016 0.039 3371 0.037 0.677 0.886 -0.024 0.038 3644 0.026 0.520 0.752
smri_sulc_cdk_insulalh Sulcal depth lh-insula Marijuana use 0.003 0.075 3371 0.036 0.963 0.996 -0.054 0.075 3644 0.026 0.469 0.905
smri_sulc_cdk_insulalh Sulcal depth lh-insula Pregnancy complications 0.032 0.034 3371 0.036 0.350 0.662 0.061 0.033 3644 0.026 0.067 0.295
smri_sulc_cdk_insulalh Sulcal depth lh-insula Birth complications -0.055 0.038 3371 0.037 0.150 0.435 0.005 0.035 3644 0.026 0.885 0.955
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Unplanned pregnancy -0.068 0.040 3371 0.011 0.091 0.967 0.083 0.040 3644 0.004 0.037 0.834
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus C-Section -0.017 0.037 3371 0.011 0.656 0.756 -0.031 0.035 3644 0.003 0.376 0.708
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Gestational Age -0.064 0.053 3371 0.012 0.223 0.316 -0.158 0.049 3644 0.007 0.001 0.007
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Birth weight -0.025 0.050 3371 0.011 0.609 0.727 -0.015 0.049 3644 0.003 0.760 0.856
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Tobacco use 0.019 0.057 3371 0.011 0.744 0.994 0.077 0.054 3644 0.003 0.157 0.514
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Alcohol use -0.046 0.040 3371 0.011 0.257 0.724 0.008 0.039 3644 0.003 0.834 0.914
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Marijuana use 0.053 0.079 3371 0.011 0.500 0.983 -0.074 0.078 3644 0.003 0.343 0.848
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Pregnancy complications -0.008 0.036 3371 0.011 0.816 0.911 -0.023 0.035 3644 0.003 0.513 0.751
smri_sulc_cdk_banksstsrh Sulcal depth rh-Banks of Superior Temporal Sulcus Birth complications 0.022 0.040 3371 0.011 0.583 0.733 -0.055 0.037 3644 0.004 0.135 0.684
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Unplanned pregnancy 0.005 0.040 3371 0.036 0.892 0.967 0.019 0.038 3644 0.030 0.625 0.935
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate C-Section 0.034 0.037 3371 0.037 0.354 0.565 -0.024 0.035 3644 0.030 0.483 0.743
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Gestational Age 0.069 0.054 3371 0.037 0.197 0.297 0.034 0.050 3644 0.030 0.497 0.593
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Birth weight 0.156 0.049 3371 0.039 0.001 0.006 0.184 0.048 3644 0.034 0.000 0.001
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Tobacco use 0.029 0.056 3371 0.036 0.610 0.988 -0.028 0.053 3644 0.030 0.597 0.902
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Alcohol use -0.053 0.040 3371 0.037 0.179 0.700 -0.040 0.038 3644 0.030 0.294 0.691
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Marijuana use -0.051 0.077 3371 0.036 0.511 0.983 -0.100 0.076 3644 0.030 0.190 0.744
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Pregnancy complications 0.059 0.035 3371 0.037 0.094 0.526 0.024 0.034 3644 0.030 0.480 0.751
smri_sulc_cdk_cdacaterh Sulcal depth rh-caudalanteriorcingulate Birth complications -0.057 0.039 3371 0.037 0.140 0.435 -0.019 0.036 3644 0.030 0.603 0.891
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Unplanned pregnancy -0.030 0.040 3371 0.008 0.460 0.967 0.029 0.040 3644 0.005 0.472 0.935
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal C-Section 0.017 0.037 3371 0.008 0.650 0.756 0.033 0.036 3644 0.005 0.356 0.708
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Gestational Age 0.038 0.051 3371 0.008 0.462 0.604 0.109 0.050 3644 0.006 0.031 0.066
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Birth weight 0.049 0.049 3371 0.008 0.318 0.508 0.143 0.049 3644 0.007 0.003 0.014
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Tobacco use 0.033 0.057 3371 0.008 0.556 0.922 -0.095 0.055 3644 0.006 0.084 0.427
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Alcohol use 0.008 0.040 3371 0.008 0.836 0.996 -0.014 0.040 3644 0.005 0.723 0.848
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Marijuana use 0.045 0.079 3371 0.008 0.568 0.983 -0.043 0.079 3644 0.005 0.588 0.908
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Pregnancy complications -0.010 0.036 3371 0.008 0.783 0.907 0.066 0.035 3644 0.006 0.060 0.295
smri_sulc_cdk_cdmdfrrh Sulcal depth rh-caudalmiddlefrontal Birth complications -0.012 0.040 3371 0.008 0.761 0.878 0.042 0.037 3644 0.005 0.258 0.684
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Unplanned pregnancy -0.003 0.041 3371 0.011 0.937 0.967 0.062 0.039 3644 0.011 0.118 0.935
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus C-Section -0.007 0.038 3371 0.011 0.859 0.899 -0.044 0.036 3644 0.011 0.219 0.648
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Gestational Age 0.192 0.054 3371 0.016 0.000 0.003 0.011 0.051 3644 0.010 0.829 0.880
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Birth weight -0.044 0.050 3371 0.011 0.374 0.530 0.067 0.049 3644 0.010 0.173 0.282
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Tobacco use -0.010 0.057 3371 0.011 0.865 0.994 0.020 0.054 3644 0.010 0.707 0.943
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Alcohol use -0.024 0.041 3371 0.011 0.556 0.804 0.041 0.039 3644 0.010 0.292 0.691
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Marijuana use 0.107 0.079 3371 0.011 0.175 0.724 0.115 0.078 3644 0.011 0.140 0.744
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Pregnancy complications 0.041 0.036 3371 0.011 0.255 0.617 0.022 0.035 3644 0.010 0.534 0.751
smri_sulc_cdk_cuneusrh Sulcal depth rh-cuneus Birth complications 0.093 0.039 3371 0.013 0.018 0.376 -0.002 0.037 3644 0.010 0.952 0.976
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Unplanned pregnancy -0.034 0.041 3371 0.003 0.401 0.967 0.010 0.039 3644 0.005 0.796 0.966
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal C-Section -0.040 0.038 3371 0.003 0.290 0.549 0.020 0.036 3644 0.005 0.575 0.793
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Gestational Age -0.006 0.055 3371 0.002 0.907 0.928 -0.046 0.051 3644 0.005 0.371 0.468
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Birth weight -0.129 0.050 3371 0.004 0.009 0.031 -0.139 0.049 3644 0.006 0.004 0.017
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Tobacco use -0.024 0.058 3371 0.002 0.675 0.994 0.002 0.054 3644 0.005 0.974 0.999
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Alcohol use -0.053 0.041 3371 0.003 0.191 0.700 0.023 0.039 3644 0.005 0.565 0.754
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Marijuana use -0.094 0.079 3371 0.003 0.234 0.739 -0.047 0.078 3644 0.005 0.545 0.905
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Pregnancy complications -0.051 0.036 3371 0.003 0.154 0.568 -0.071 0.035 3644 0.006 0.041 0.282
smri_sulc_cdk_ehinalrh Sulcal depth rh-entorhinal Birth complications -0.046 0.040 3371 0.003 0.243 0.532 -0.038 0.037 3644 0.005 0.301 0.684
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Unplanned pregnancy -0.048 0.040 3371 0.022 0.233 0.967 -0.023 0.039 3644 0.039 0.556 0.935
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform C-Section 0.083 0.037 3371 0.023 0.024 0.134 0.102 0.035 3644 0.042 0.004 0.049
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Gestational Age 0.227 0.053 3371 0.030 0.000 0.001 0.159 0.049 3644 0.044 0.001 0.007
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Birth weight 0.149 0.049 3371 0.025 0.002 0.011 0.086 0.048 3644 0.041 0.072 0.164
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Tobacco use 0.006 0.056 3371 0.021 0.917 0.994 0.051 0.053 3644 0.040 0.335 0.651
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Alcohol use -0.039 0.040 3371 0.021 0.327 0.724 -0.051 0.039 3644 0.040 0.186 0.691
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Marijuana use 0.040 0.078 3371 0.021 0.604 0.983 -0.019 0.077 3644 0.039 0.801 0.908
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Pregnancy complications 0.094 0.035 3371 0.024 0.008 0.172 0.074 0.034 3644 0.041 0.030 0.282
smri_sulc_cdk_fusiformrh Sulcal depth rh-fusiform Birth complications 0.063 0.039 3371 0.022 0.110 0.435 0.077 0.036 3644 0.041 0.032 0.368
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Unplanned pregnancy -0.039 0.040 3371 0.034 0.332 0.967 -0.006 0.039 3644 0.038 0.882 0.983
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal C-Section 0.020 0.037 3371 0.034 0.597 0.725 -0.008 0.035 3644 0.038 0.826 0.937
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Gestational Age 0.112 0.053 3371 0.036 0.034 0.082 0.080 0.050 3644 0.038 0.110 0.170
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Birth weight 0.112 0.049 3371 0.036 0.022 0.066 0.088 0.048 3644 0.039 0.067 0.157
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Tobacco use 0.017 0.057 3371 0.034 0.769 0.994 0.031 0.054 3644 0.038 0.560 0.902
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Alcohol use -0.060 0.040 3371 0.035 0.135 0.613 0.001 0.039 3644 0.038 0.980 0.999
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Marijuana use 0.000 0.078 3371 0.034 0.996 0.996 0.045 0.077 3644 0.038 0.559 0.905
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Pregnancy complications -0.025 0.035 3371 0.034 0.482 0.755 -0.033 0.034 3644 0.038 0.339 0.658
smri_sulc_cdk_ifplrh Sulcal depth rh-inferiorparietal Birth complications 0.021 0.039 3371 0.034 0.593 0.733 0.034 0.036 3644 0.038 0.354 0.684
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Unplanned pregnancy 0.017 0.041 3371 0.003 0.671 0.967 -0.001 0.040 3644 0.002 0.973 0.987
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal C-Section -0.049 0.038 3371 0.004 0.188 0.451 -0.106 0.036 3644 0.005 0.003 0.049
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Gestational Age -0.202 0.053 3371 0.008 0.000 0.002 -0.189 0.050 3644 0.006 0.000 0.001
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Birth weight -0.267 0.050 3371 0.011 0.000 0.000 -0.136 0.049 3644 0.005 0.006 0.021
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Tobacco use 0.099 0.058 3371 0.004 0.087 0.508 0.009 0.055 3644 0.002 0.864 0.964
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Alcohol use 0.078 0.041 3371 0.005 0.054 0.458 0.045 0.040 3644 0.003 0.254 0.691
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Marijuana use 0.099 0.079 3371 0.004 0.209 0.739 -0.024 0.079 3644 0.002 0.758 0.908
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Pregnancy complications -0.100 0.036 3371 0.006 0.005 0.172 -0.074 0.035 3644 0.003 0.035 0.282
smri_sulc_cdk_iftmrh Sulcal depth rh-inferiortemporal Birth complications -0.051 0.040 3371 0.004 0.203 0.476 -0.065 0.037 3644 0.003 0.080 0.603
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Unplanned pregnancy -0.045 0.041 3371 0.002 0.266 0.967 0.022 0.039 3644 -0.003 0.578 0.935
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate C-Section -0.030 0.038 3371 0.001 0.425 0.578 -0.003 0.036 3644 -0.003 0.925 0.953
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Gestational Age 0.132 0.054 3371 0.004 0.014 0.044 0.157 0.051 3644 0.001 0.002 0.008
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Birth weight 0.141 0.050 3371 0.004 0.005 0.019 0.084 0.049 3644 -0.002 0.088 0.186
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Tobacco use -0.046 0.057 3371 0.002 0.420 0.911 -0.037 0.054 3644 -0.003 0.495 0.886
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Alcohol use -0.040 0.040 3371 0.002 0.324 0.724 -0.059 0.039 3644 -0.002 0.133 0.687
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Marijuana use 0.003 0.079 3371 0.001 0.972 0.996 -0.090 0.078 3644 -0.003 0.252 0.744
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Pregnancy complications 0.047 0.036 3371 0.002 0.186 0.572 0.019 0.035 3644 -0.003 0.585 0.765
smri_sulc_cdk_ihcaterh Sulcal depth rh-isthmuscingulate Birth complications -0.036 0.040 3371 0.001 0.359 0.642 -0.020 0.037 3644 -0.003 0.585 0.891
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Unplanned pregnancy 0.013 0.041 3371 0.003 0.744 0.967 0.002 0.040 3644 0.000 0.962 0.987
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital C-Section 0.045 0.038 3371 0.003 0.237 0.509 -0.023 0.036 3644 0.000 0.527 0.759
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Gestational Age -0.068 0.055 3371 0.003 0.221 0.316 0.007 0.051 3644 0.001 0.893 0.934
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Birth weight -0.045 0.050 3371 0.003 0.370 0.530 -0.011 0.049 3644 0.000 0.821 0.886
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Tobacco use -0.026 0.058 3371 0.003 0.657 0.994 0.077 0.055 3644 0.001 0.160 0.514
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Alcohol use 0.003 0.041 3371 0.003 0.940 0.996 0.069 0.040 3644 0.001 0.083 0.687
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Marijuana use -0.009 0.079 3371 0.003 0.914 0.996 0.113 0.079 3644 0.001 0.152 0.744
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Pregnancy complications 0.025 0.036 3371 0.003 0.498 0.755 0.045 0.035 3644 0.001 0.197 0.458
smri_sulc_cdk_loccrh Sulcal depth rh-lateraloccipital Birth complications 0.005 0.040 3371 0.003 0.904 0.932 -0.013 0.037 3644 0.000 0.734 0.943
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Unplanned pregnancy 0.016 0.040 3371 0.040 0.687 0.967 0.019 0.039 3644 0.041 0.622 0.935
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal C-Section 0.113 0.037 3371 0.043 0.002 0.033 0.097 0.035 3644 0.043 0.006 0.055
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Gestational Age -0.067 0.052 3371 0.041 0.199 0.297 -0.098 0.050 3644 0.041 0.049 0.088
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Birth weight -0.035 0.049 3371 0.040 0.468 0.595 -0.004 0.048 3644 0.041 0.927 0.941
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Tobacco use 0.004 0.056 3371 0.040 0.950 0.994 -0.006 0.054 3644 0.041 0.908 0.965
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Alcohol use -0.065 0.040 3371 0.042 0.103 0.582 -0.045 0.039 3644 0.042 0.240 0.691
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Marijuana use 0.027 0.077 3371 0.040 0.730 0.983 -0.010 0.077 3644 0.041 0.901 0.935
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Pregnancy complications 0.016 0.035 3371 0.040 0.658 0.895 0.042 0.034 3644 0.042 0.222 0.460
smri_sulc_cdk_lobfrrh Sulcal depth rh-lateralorbitofrontal Birth complications -0.037 0.039 3371 0.041 0.339 0.642 -0.007 0.036 3644 0.041 0.852 0.955
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Unplanned pregnancy -0.051 0.040 3371 0.019 0.202 0.967 0.025 0.040 3644 0.017 0.524 0.935
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual C-Section -0.024 0.037 3371 0.018 0.516 0.675 -0.024 0.036 3644 0.017 0.496 0.743
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Gestational Age 0.032 0.055 3371 0.018 0.561 0.703 -0.021 0.052 3644 0.017 0.687 0.778
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Birth weight 0.168 0.049 3371 0.023 0.001 0.004 0.064 0.049 3644 0.017 0.188 0.298
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Tobacco use 0.018 0.057 3371 0.018 0.756 0.994 0.132 0.055 3644 0.019 0.016 0.193
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Alcohol use -0.042 0.040 3371 0.019 0.302 0.724 0.034 0.040 3644 0.017 0.395 0.699
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Marijuana use -0.119 0.078 3371 0.019 0.127 0.724 0.054 0.078 3644 0.017 0.493 0.905
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Pregnancy complications 0.035 0.036 3371 0.019 0.320 0.622 0.001 0.035 3644 0.017 0.981 0.981
smri_sulc_cdk_lingualrh Sulcal depth rh-lingual Birth complications -0.012 0.039 3371 0.018 0.752 0.878 0.009 0.037 3644 0.017 0.798 0.943
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Unplanned pregnancy 0.031 0.040 3371 0.043 0.438 0.967 -0.053 0.039 3644 0.034 0.173 0.935
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal C-Section 0.009 0.037 3371 0.043 0.817 0.882 0.088 0.035 3644 0.035 0.013 0.087
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Gestational Age -0.122 0.053 3371 0.045 0.022 0.063 -0.135 0.051 3644 0.035 0.008 0.022
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Birth weight -0.133 0.049 3371 0.046 0.006 0.023 -0.179 0.048 3644 0.037 0.000 0.002
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Tobacco use -0.048 0.057 3371 0.043 0.400 0.911 0.023 0.054 3644 0.034 0.665 0.943
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Alcohol use 0.091 0.040 3371 0.045 0.022 0.380 0.011 0.039 3644 0.034 0.781 0.900
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Marijuana use -0.017 0.078 3371 0.043 0.824 0.983 0.053 0.078 3644 0.034 0.492 0.905
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Pregnancy complications -0.037 0.035 3371 0.044 0.300 0.617 -0.070 0.035 3644 0.035 0.044 0.282
smri_sulc_cdk_mobfrrh Sulcal depth rh-medialorbitofrontal Birth complications 0.030 0.039 3371 0.043 0.435 0.687 -0.035 0.036 3644 0.034 0.329 0.684
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Unplanned pregnancy 0.005 0.040 3371 0.036 0.909 0.967 0.000 0.039 3644 0.029 1.000 1.000
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal C-Section 0.051 0.037 3371 0.037 0.165 0.451 0.072 0.035 3644 0.030 0.042 0.231
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Gestational Age 0.209 0.052 3371 0.042 0.000 0.001 0.210 0.049 3644 0.035 0.000 0.000
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Birth weight 0.201 0.049 3371 0.041 0.000 0.001 0.193 0.048 3644 0.034 0.000 0.001
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Tobacco use -0.200 0.056 3371 0.040 0.000 0.027 -0.082 0.054 3644 0.029 0.133 0.503
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Alcohol use -0.103 0.040 3371 0.038 0.010 0.222 -0.054 0.039 3644 0.029 0.171 0.687
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Marijuana use -0.176 0.078 3371 0.038 0.023 0.396 -0.110 0.078 3644 0.029 0.158 0.744
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Pregnancy complications 0.027 0.035 3371 0.037 0.452 0.755 0.029 0.035 3644 0.029 0.404 0.751
smri_sulc_cdk_mdtmrh Sulcal depth rh-middletemporal Birth complications 0.039 0.039 3371 0.037 0.317 0.642 0.064 0.036 3644 0.030 0.079 0.603
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Unplanned pregnancy 0.027 0.040 3371 0.050 0.505 0.967 0.018 0.039 3644 0.045 0.645 0.935
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal C-Section -0.082 0.037 3371 0.052 0.026 0.134 -0.030 0.035 3644 0.045 0.389 0.708
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Gestational Age -0.062 0.052 3371 0.050 0.239 0.331 -0.074 0.050 3644 0.046 0.139 0.210
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Birth weight -0.061 0.049 3371 0.051 0.209 0.374 -0.074 0.048 3644 0.046 0.124 0.228
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Tobacco use 0.093 0.056 3371 0.051 0.098 0.508 0.128 0.054 3644 0.047 0.018 0.193
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Alcohol use 0.110 0.040 3371 0.053 0.005 0.185 0.016 0.039 3644 0.045 0.688 0.821
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Marijuana use -0.024 0.077 3371 0.050 0.755 0.983 0.016 0.077 3644 0.045 0.835 0.909
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Pregnancy complications -0.039 0.035 3371 0.050 0.265 0.617 0.007 0.034 3644 0.045 0.832 0.912
smri_sulc_cdk_parahpalrh Sulcal depth rh-parahippocampal Birth complications -0.037 0.039 3371 0.050 0.342 0.642 -0.011 0.036 3644 0.045 0.768 0.943
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Unplanned pregnancy 0.016 0.041 3371 0.012 0.698 0.967 -0.036 0.040 3644 0.012 0.369 0.935
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral C-Section 0.037 0.038 3371 0.012 0.332 0.565 0.067 0.036 3644 0.013 0.058 0.263
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Gestational Age 0.019 0.054 3371 0.012 0.729 0.841 0.049 0.050 3644 0.012 0.325 0.418
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Birth weight -0.011 0.050 3371 0.012 0.822 0.901 0.060 0.049 3644 0.012 0.219 0.339
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Tobacco use 0.080 0.058 3371 0.012 0.164 0.620 0.007 0.055 3644 0.012 0.893 0.965
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Alcohol use 0.063 0.041 3371 0.012 0.120 0.582 0.039 0.039 3644 0.012 0.325 0.699
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Marijuana use 0.040 0.079 3371 0.012 0.614 0.983 0.121 0.079 3644 0.012 0.123 0.744
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Pregnancy complications -0.029 0.036 3371 0.012 0.426 0.742 0.018 0.035 3644 0.012 0.602 0.772
smri_sulc_cdk_paracnrh Sulcal depth rh-paracentral Birth complications 0.022 0.040 3371 0.012 0.579 0.733 0.012 0.037 3644 0.012 0.739 0.943
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Unplanned pregnancy 0.011 0.041 3371 0.000 0.786 0.967 -0.020 0.040 3644 0.002 0.611 0.935
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis C-Section 0.043 0.038 3371 0.000 0.253 0.509 -0.027 0.036 3644 0.003 0.452 0.743
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Gestational Age -0.118 0.054 3371 0.001 0.028 0.076 -0.105 0.050 3644 0.004 0.036 0.074
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Birth weight -0.037 0.050 3371 0.000 0.460 0.595 0.023 0.049 3644 0.002 0.639 0.797
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Tobacco use -0.005 0.058 3371 0.000 0.933 0.994 -0.115 0.054 3644 0.003 0.035 0.267
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Alcohol use 0.035 0.041 3371 0.000 0.393 0.724 0.068 0.039 3644 0.004 0.084 0.687
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Marijuana use -0.071 0.079 3371 0.000 0.371 0.841 -0.128 0.079 3644 0.003 0.104 0.744
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Pregnancy complications -0.027 0.036 3371 0.000 0.460 0.755 -0.004 0.035 3644 0.002 0.904 0.931
smri_sulc_cdk_parsopcrh Sulcal depth rh-parsopercularis Birth complications -0.054 0.040 3371 0.000 0.173 0.452 -0.021 0.037 3644 0.003 0.561 0.888
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Unplanned pregnancy 0.008 0.040 3371 0.006 0.851 0.967 -0.038 0.039 3644 0.017 0.331 0.935
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis C-Section 0.033 0.037 3371 0.007 0.376 0.565 0.052 0.035 3644 0.018 0.140 0.478
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Gestational Age 0.146 0.053 3371 0.009 0.006 0.025 0.087 0.050 3644 0.018 0.084 0.135
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Birth weight 0.021 0.049 3371 0.006 0.672 0.762 0.033 0.049 3644 0.017 0.502 0.683
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Tobacco use 0.007 0.057 3371 0.006 0.902 0.994 0.059 0.054 3644 0.018 0.276 0.612
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Alcohol use -0.029 0.040 3371 0.006 0.465 0.753 0.082 0.039 3644 0.019 0.036 0.615
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Marijuana use 0.106 0.078 3371 0.007 0.176 0.724 0.043 0.078 3644 0.018 0.576 0.908
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Pregnancy complications 0.024 0.035 3371 0.007 0.489 0.755 -0.063 0.035 3644 0.018 0.069 0.295
smri_sulc_cdk_parsobisrh Sulcal depth rh-parsorbitalis Birth complications 0.023 0.039 3371 0.006 0.550 0.733 0.010 0.037 3644 0.017 0.784 0.943
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Unplanned pregnancy 0.045 0.040 3371 0.012 0.266 0.967 -0.013 0.040 3644 0.013 0.738 0.946
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis C-Section -0.031 0.037 3371 0.012 0.397 0.565 -0.010 0.035 3644 0.013 0.778 0.912
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Gestational Age 0.077 0.052 3371 0.012 0.139 0.225 -0.064 0.049 3644 0.013 0.192 0.266
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Birth weight -0.054 0.049 3371 0.012 0.270 0.460 -0.005 0.048 3644 0.013 0.915 0.941
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Tobacco use -0.038 0.057 3371 0.012 0.502 0.911 -0.073 0.054 3644 0.013 0.178 0.514
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Alcohol use -0.032 0.040 3371 0.012 0.417 0.724 0.044 0.039 3644 0.013 0.263 0.691
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Marijuana use -0.109 0.078 3371 0.012 0.163 0.724 -0.109 0.078 3644 0.013 0.165 0.744
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Pregnancy complications 0.003 0.035 3371 0.011 0.925 0.954 0.014 0.035 3644 0.013 0.692 0.848
smri_sulc_cdk_parstgrisrh Sulcal depth rh-parstriangularis Birth complications 0.022 0.039 3371 0.012 0.579 0.733 -0.025 0.037 3644 0.013 0.495 0.842
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Unplanned pregnancy 0.045 0.040 3371 0.017 0.266 0.967 -0.064 0.039 3644 0.021 0.101 0.935
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine C-Section 0.014 0.038 3371 0.017 0.704 0.779 0.015 0.035 3644 0.020 0.667 0.840
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Gestational Age -0.016 0.056 3371 0.016 0.780 0.884 0.123 0.051 3644 0.025 0.017 0.042
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Birth weight 0.052 0.049 3371 0.018 0.287 0.477 -0.008 0.048 3644 0.020 0.861 0.904
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Tobacco use -0.062 0.057 3371 0.017 0.280 0.791 -0.042 0.054 3644 0.021 0.432 0.815
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Alcohol use -0.071 0.040 3371 0.019 0.078 0.532 0.009 0.039 3644 0.020 0.811 0.914
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Marijuana use -0.051 0.078 3371 0.017 0.509 0.983 0.047 0.077 3644 0.020 0.540 0.905
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Pregnancy complications 0.010 0.036 3371 0.017 0.787 0.907 -0.043 0.035 3644 0.020 0.216 0.460
smri_sulc_cdk_periccrh Sulcal depth rh-pericalcarine Birth complications 0.032 0.039 3371 0.017 0.402 0.667 -0.037 0.036 3644 0.020 0.311 0.684
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Unplanned pregnancy -0.059 0.041 3371 0.007 0.148 0.967 -0.007 0.040 3644 0.002 0.852 0.966
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral C-Section -0.104 0.037 3371 0.009 0.005 0.048 0.033 0.036 3644 0.002 0.350 0.708
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Gestational Age 0.056 0.053 3371 0.007 0.297 0.396 0.137 0.050 3644 0.004 0.006 0.020
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Birth weight 0.064 0.050 3371 0.007 0.195 0.359 -0.033 0.049 3644 0.002 0.494 0.683
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Tobacco use -0.011 0.057 3371 0.007 0.849 0.994 0.059 0.055 3644 0.002 0.283 0.612
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Alcohol use 0.041 0.041 3371 0.007 0.317 0.724 -0.026 0.040 3644 0.002 0.519 0.752
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Marijuana use 0.018 0.079 3371 0.007 0.823 0.983 0.034 0.079 3644 0.002 0.670 0.908
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Pregnancy complications -0.013 0.036 3371 0.007 0.726 0.907 0.046 0.035 3644 0.002 0.189 0.458
smri_sulc_cdk_postcnrh Sulcal depth rh-postcentral Birth complications 0.036 0.040 3371 0.007 0.368 0.642 0.068 0.037 3644 0.003 0.067 0.603
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Unplanned pregnancy -0.039 0.040 3371 0.019 0.330 0.967 -0.007 0.038 3644 0.022 0.847 0.966
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate C-Section 0.067 0.037 3371 0.021 0.070 0.281 -0.012 0.035 3644 0.022 0.720 0.875
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Gestational Age 0.104 0.054 3371 0.022 0.051 0.121 0.163 0.049 3644 0.025 0.001 0.006
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Birth weight 0.200 0.049 3371 0.024 0.000 0.001 0.161 0.047 3644 0.025 0.001 0.003
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Tobacco use 0.143 0.056 3371 0.021 0.011 0.151 -0.012 0.053 3644 0.022 0.813 0.953
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Alcohol use 0.009 0.040 3371 0.019 0.813 0.987 -0.004 0.038 3644 0.022 0.925 0.968
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Marijuana use 0.006 0.077 3371 0.019 0.934 0.996 0.058 0.076 3644 0.022 0.441 0.905
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Pregnancy complications 0.029 0.035 3371 0.019 0.410 0.734 0.023 0.034 3644 0.022 0.492 0.751
smri_sulc_cdk_ptcaterh Sulcal depth rh-posteriorcingulate Birth complications -0.006 0.039 3371 0.019 0.885 0.932 0.059 0.036 3644 0.023 0.097 0.659
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Unplanned pregnancy 0.039 0.040 3371 0.004 0.333 0.967 -0.016 0.039 3644 0.010 0.676 0.935
smri_sulc_cdk_precnrh Sulcal depth rh-precentral C-Section 0.100 0.037 3371 0.006 0.007 0.054 0.024 0.035 3644 0.011 0.503 0.743
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Gestational Age 0.136 0.053 3371 0.007 0.011 0.036 0.102 0.050 3644 0.012 0.042 0.079
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Birth weight 0.004 0.049 3371 0.004 0.935 0.956 0.076 0.048 3644 0.011 0.119 0.226
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Tobacco use -0.036 0.057 3371 0.004 0.523 0.911 0.034 0.054 3644 0.011 0.526 0.902
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Alcohol use -0.063 0.040 3371 0.004 0.118 0.582 -0.028 0.039 3644 0.010 0.477 0.752
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Marijuana use -0.024 0.078 3371 0.004 0.762 0.983 0.022 0.078 3644 0.010 0.777 0.908
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Pregnancy complications 0.068 0.035 3371 0.005 0.055 0.514 0.064 0.034 3644 0.012 0.064 0.295
smri_sulc_cdk_precnrh Sulcal depth rh-precentral Birth complications 0.056 0.039 3371 0.004 0.156 0.435 0.032 0.037 3644 0.011 0.384 0.705
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Unplanned pregnancy 0.022 0.041 3371 0.006 0.582 0.967 0.037 0.040 3644 0.011 0.354 0.935
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus C-Section -0.063 0.038 3371 0.006 0.096 0.342 -0.037 0.036 3644 0.011 0.302 0.697
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Gestational Age 0.088 0.056 3371 0.008 0.114 0.199 -0.016 0.052 3644 0.011 0.753 0.840
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Birth weight 0.007 0.049 3371 0.006 0.891 0.946 0.014 0.049 3644 0.011 0.776 0.856
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Tobacco use 0.076 0.058 3371 0.006 0.187 0.669 -0.007 0.055 3644 0.011 0.894 0.965
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Alcohol use 0.035 0.041 3371 0.006 0.394 0.724 0.022 0.040 3644 0.011 0.576 0.754
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Marijuana use 0.090 0.079 3371 0.007 0.251 0.739 0.091 0.078 3644 0.011 0.245 0.744
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Pregnancy complications 0.045 0.036 3371 0.007 0.211 0.597 0.008 0.035 3644 0.011 0.808 0.906
smri_sulc_cdk_pcrh Sulcal depth rh-precuneus Birth complications 0.024 0.039 3371 0.006 0.542 0.733 -0.047 0.037 3644 0.011 0.199 0.684
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Unplanned pregnancy -0.018 0.040 3371 0.014 0.646 0.967 0.031 0.039 3644 0.001 0.429 0.935
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate C-Section 0.056 0.037 3371 0.015 0.131 0.405 0.044 0.035 3644 0.002 0.217 0.648
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Gestational Age 0.147 0.054 3371 0.018 0.006 0.025 0.146 0.050 3644 0.003 0.004 0.012
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Birth weight 0.207 0.049 3371 0.019 0.000 0.001 0.132 0.048 3644 0.004 0.006 0.023
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Tobacco use -0.004 0.056 3371 0.014 0.944 0.994 0.090 0.054 3644 0.002 0.095 0.427
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Alcohol use -0.028 0.040 3371 0.013 0.480 0.759 -0.007 0.039 3644 0.001 0.853 0.920
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Marijuana use 0.008 0.077 3371 0.014 0.920 0.996 -0.024 0.077 3644 0.001 0.754 0.908
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Pregnancy complications 0.036 0.035 3371 0.014 0.300 0.617 0.057 0.034 3644 0.002 0.098 0.332
smri_sulc_cdk_rracaterh Sulcal depth rh-rostralanteriorcingulate Birth complications 0.036 0.039 3371 0.014 0.350 0.642 0.003 0.036 3644 0.001 0.937 0.976
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Unplanned pregnancy 0.005 0.039 3371 0.030 0.907 0.967 -0.019 0.038 3644 0.042 0.610 0.935
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal C-Section -0.013 0.036 3371 0.030 0.711 0.779 0.016 0.034 3644 0.042 0.638 0.834
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Gestational Age 0.029 0.052 3371 0.029 0.578 0.703 0.068 0.049 3644 0.041 0.169 0.245
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Birth weight 0.054 0.048 3371 0.029 0.255 0.445 -0.081 0.047 3644 0.043 0.086 0.186
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Tobacco use 0.058 0.055 3371 0.030 0.291 0.791 0.028 0.052 3644 0.042 0.595 0.902
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Alcohol use 0.003 0.039 3371 0.030 0.940 0.996 -0.055 0.038 3644 0.042 0.145 0.687
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Marijuana use -0.043 0.076 3371 0.030 0.573 0.983 -0.187 0.075 3644 0.043 0.013 0.454
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Pregnancy complications 0.020 0.034 3371 0.030 0.552 0.816 0.013 0.034 3644 0.042 0.698 0.848
smri_sulc_cdk_rrmdfrrh Sulcal depth rh-rostralmiddlefrontal Birth complications -0.006 0.038 3371 0.030 0.868 0.932 0.047 0.036 3644 0.042 0.188 0.684
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Unplanned pregnancy 0.013 0.040 3371 0.009 0.749 0.967 -0.029 0.038 3644 0.002 0.453 0.935
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal C-Section -0.060 0.037 3371 0.011 0.106 0.360 -0.088 0.035 3644 0.006 0.012 0.087
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Gestational Age -0.088 0.054 3371 0.012 0.100 0.183 -0.264 0.049 3644 0.020 0.000 0.000
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Birth weight -0.181 0.048 3371 0.017 0.000 0.001 -0.167 0.047 3644 0.009 0.000 0.003
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Tobacco use -0.089 0.056 3371 0.011 0.109 0.508 -0.009 0.053 3644 0.002 0.862 0.964
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Alcohol use 0.085 0.040 3371 0.012 0.033 0.442 0.018 0.038 3644 0.002 0.635 0.785
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Marijuana use 0.052 0.076 3371 0.009 0.493 0.983 0.214 0.076 3644 0.004 0.005 0.325
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Pregnancy complications -0.012 0.035 3371 0.009 0.733 0.907 -0.104 0.034 3644 0.007 0.002 0.140
smri_sulc_cdk_sufrrh Sulcal depth rh-superiorfrontal Birth complications 0.005 0.038 3371 0.009 0.903 0.932 -0.083 0.036 3644 0.005 0.020 0.271
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Unplanned pregnancy 0.013 0.040 3371 0.047 0.749 0.967 -0.045 0.039 3644 0.041 0.241 0.935
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal C-Section 0.031 0.037 3371 0.047 0.404 0.565 0.036 0.035 3644 0.041 0.308 0.697
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Gestational Age -0.205 0.054 3371 0.054 0.000 0.001 -0.109 0.050 3644 0.044 0.031 0.066
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Birth weight -0.043 0.048 3371 0.048 0.372 0.530 -0.047 0.048 3644 0.041 0.323 0.468
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Tobacco use 0.000 0.056 3371 0.047 0.998 0.998 -0.067 0.053 3644 0.041 0.205 0.536
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Alcohol use 0.011 0.040 3371 0.047 0.786 0.972 -0.086 0.039 3644 0.042 0.026 0.600
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Marijuana use 0.019 0.076 3371 0.047 0.805 0.983 -0.171 0.076 3644 0.042 0.025 0.576
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Pregnancy complications 0.011 0.035 3371 0.047 0.759 0.907 0.008 0.034 3644 0.041 0.813 0.906
smri_sulc_cdk_suplrh Sulcal depth rh-superiorparietal Birth complications -0.074 0.038 3371 0.049 0.055 0.376 -0.001 0.036 3644 0.041 0.972 0.976
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Unplanned pregnancy 0.042 0.040 3371 0.045 0.287 0.967 -0.013 0.039 3644 0.032 0.736 0.946
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal C-Section -0.166 0.037 3371 0.051 0.000 0.000 -0.053 0.035 3644 0.033 0.130 0.465
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Gestational Age -0.213 0.052 3371 0.050 0.000 0.001 -0.181 0.049 3644 0.036 0.000 0.001
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Birth weight -0.134 0.049 3371 0.047 0.006 0.023 -0.159 0.048 3644 0.035 0.001 0.004
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Tobacco use -0.132 0.056 3371 0.046 0.019 0.182 0.020 0.054 3644 0.032 0.707 0.943
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Alcohol use 0.034 0.040 3371 0.045 0.397 0.724 0.026 0.039 3644 0.032 0.498 0.752
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Marijuana use 0.212 0.077 3371 0.047 0.006 0.158 0.096 0.078 3644 0.033 0.219 0.744
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Pregnancy complications -0.020 0.035 3371 0.045 0.577 0.835 -0.067 0.034 3644 0.033 0.050 0.285
smri_sulc_cdk_sutmrh Sulcal depth rh-superiortemporal Birth complications -0.073 0.039 3371 0.046 0.063 0.376 -0.034 0.036 3644 0.032 0.355 0.684
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Unplanned pregnancy 0.033 0.041 3371 0.003 0.423 0.967 0.018 0.040 3644 0.005 0.641 0.935
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal C-Section 0.091 0.038 3371 0.005 0.016 0.111 0.041 0.036 3644 0.006 0.255 0.668
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Gestational Age 0.091 0.054 3371 0.004 0.093 0.181 0.147 0.050 3644 0.009 0.003 0.012
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Birth weight 0.087 0.050 3371 0.004 0.082 0.179 0.112 0.049 3644 0.007 0.021 0.058
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Tobacco use 0.003 0.058 3371 0.002 0.964 0.994 -0.195 0.054 3644 0.008 0.000 0.023
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Alcohol use 0.006 0.041 3371 0.002 0.881 0.996 -0.036 0.039 3644 0.005 0.359 0.699
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Marijuana use 0.038 0.079 3371 0.003 0.630 0.983 -0.066 0.078 3644 0.005 0.399 0.874
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Pregnancy complications -0.051 0.036 3371 0.003 0.159 0.568 -0.011 0.035 3644 0.005 0.755 0.901
smri_sulc_cdk_smrh Sulcal depth rh-supramarginal Birth complications 0.052 0.040 3371 0.003 0.195 0.476 0.024 0.037 3644 0.005 0.508 0.843
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Unplanned pregnancy 0.023 0.040 3371 0.006 0.568 0.967 -0.050 0.039 3644 0.016 0.207 0.935
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole C-Section -0.033 0.037 3371 0.006 0.370 0.565 -0.005 0.036 3644 0.016 0.896 0.953
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Gestational Age -0.139 0.053 3371 0.011 0.009 0.033 -0.189 0.050 3644 0.022 0.000 0.001
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Birth weight -0.111 0.049 3371 0.008 0.024 0.068 -0.165 0.049 3644 0.020 0.001 0.003
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Tobacco use -0.125 0.057 3371 0.007 0.027 0.233 -0.016 0.054 3644 0.016 0.766 0.953
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Alcohol use 0.020 0.040 3371 0.006 0.618 0.840 0.030 0.039 3644 0.016 0.452 0.749
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Marijuana use -0.081 0.078 3371 0.006 0.299 0.786 0.026 0.078 3644 0.016 0.743 0.908
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Pregnancy complications -0.061 0.035 3371 0.007 0.082 0.514 -0.069 0.035 3644 0.017 0.046 0.282
smri_sulc_cdk_frpolerh Sulcal depth rh-frontalpole Birth complications -0.021 0.039 3371 0.006 0.586 0.733 -0.015 0.037 3644 0.016 0.684 0.943
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Unplanned pregnancy 0.009 0.039 3371 0.010 0.819 0.967 -0.065 0.036 3644 0.020 0.075 0.935
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole C-Section -0.109 0.036 3371 0.012 0.003 0.033 -0.109 0.033 3644 0.020 0.001 0.031
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Gestational Age 0.029 0.052 3371 0.010 0.579 0.703 -0.133 0.047 3644 0.017 0.005 0.015
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Birth weight -0.071 0.048 3371 0.010 0.136 0.272 -0.173 0.045 3644 0.019 0.000 0.001
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Tobacco use -0.136 0.055 3371 0.012 0.013 0.151 -0.004 0.050 3644 0.018 0.940 0.983
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Alcohol use 0.015 0.039 3371 0.010 0.698 0.896 0.021 0.036 3644 0.017 0.564 0.754
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Marijuana use -0.138 0.076 3371 0.011 0.067 0.724 0.007 0.072 3644 0.018 0.920 0.935
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Pregnancy complications 0.023 0.034 3371 0.010 0.500 0.755 -0.018 0.032 3644 0.018 0.568 0.765
smri_sulc_cdk_tmpolerh Sulcal depth rh-temporalpole Birth complications 0.056 0.038 3371 0.011 0.140 0.435 -0.041 0.034 3644 0.018 0.228 0.684
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Unplanned pregnancy -0.028 0.039 3371 0.026 0.477 0.967 0.020 0.038 3644 0.033 0.588 0.935
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal C-Section 0.020 0.037 3371 0.026 0.590 0.725 0.035 0.034 3644 0.033 0.305 0.697
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Gestational Age 0.061 0.053 3371 0.026 0.245 0.333 0.090 0.049 3644 0.032 0.063 0.108
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Birth weight 0.047 0.048 3371 0.026 0.332 0.513 0.096 0.047 3644 0.033 0.040 0.106
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Tobacco use 0.086 0.055 3371 0.027 0.120 0.508 0.067 0.052 3644 0.034 0.199 0.536
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Alcohol use -0.032 0.039 3371 0.026 0.422 0.724 0.020 0.038 3644 0.033 0.594 0.761
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Marijuana use 0.023 0.076 3371 0.026 0.767 0.983 -0.049 0.075 3644 0.033 0.516 0.905
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Pregnancy complications 0.018 0.035 3371 0.026 0.597 0.835 0.056 0.033 3644 0.033 0.095 0.332
smri_sulc_cdk_trvtmrh Sulcal depth rh-transversetemporal Birth complications -0.026 0.038 3371 0.027 0.491 0.733 -0.012 0.035 3644 0.033 0.738 0.943
smri_sulc_cdk_insularh Sulcal depth rh-insula Unplanned pregnancy 0.003 0.039 3371 0.039 0.935 0.967 0.037 0.038 3644 0.027 0.328 0.935
smri_sulc_cdk_insularh Sulcal depth rh-insula C-Section 0.023 0.037 3371 0.039 0.532 0.683 -0.031 0.034 3644 0.026 0.362 0.708
smri_sulc_cdk_insularh Sulcal depth rh-insula Gestational Age -0.115 0.053 3371 0.041 0.032 0.082 -0.088 0.049 3644 0.029 0.076 0.126
smri_sulc_cdk_insularh Sulcal depth rh-insula Birth weight 0.087 0.048 3371 0.038 0.070 0.163 0.077 0.047 3644 0.026 0.099 0.204
smri_sulc_cdk_insularh Sulcal depth rh-insula Tobacco use 0.106 0.055 3371 0.040 0.056 0.422 0.012 0.052 3644 0.026 0.812 0.953
smri_sulc_cdk_insularh Sulcal depth rh-insula Alcohol use 0.055 0.039 3371 0.040 0.162 0.687 0.025 0.038 3644 0.027 0.502 0.752
smri_sulc_cdk_insularh Sulcal depth rh-insula Marijuana use -0.069 0.076 3371 0.039 0.365 0.841 -0.023 0.075 3644 0.026 0.757 0.908
smri_sulc_cdk_insularh Sulcal depth rh-insula Pregnancy complications 0.062 0.035 3371 0.039 0.073 0.514 -0.019 0.033 3644 0.026 0.577 0.765
smri_sulc_cdk_insularh Sulcal depth rh-insula Birth complications -0.072 0.038 3371 0.041 0.058 0.376 -0.013 0.035 3644 0.026 0.712 0.943

Summary of sensitivity analysis

Cortical Volume
Out of 6 significant Cortical Volume ROIs associated with Prenatal Adversity in females, 6 were also significantly assotiated with individual prenatal exposures.
Overlaping ROIs: Cortical volume lh-Banks of Superior Temporal Sulcus, Cortical volume lh-inferiorparietal, Cortical volume lh-inferiorparietal, Cortical volume lh-inferiorparietal, Cortical volume rh-middletemporal, Cortical volume rh-middletemporal.
Prenatal Vars: C-Section, C-Section, Gestational Age, Birth weight, Gestational Age, Birth weight
Out of 4 significant Cortical Volume ROIs associated with Prenatal Adversity in males, only 2were also significant with individual risks.
Overlaping ROIs: Cortical volume rh-middletemporal, Cortical volume rh-postcentral.
Prenatal vars:Gestational Age, Gestational Age


Subcortical Volume
Out of 0 significant Subcortical Volume ROIs associated with Prenatal Adversity in males, 0were also significant with individual exposure.
Overlaping ROIs:
Prenatal vars:


Cortical Thickness
Out of 7 significant Cortical Thickness regions associated with Prenatal Adversity in females, 11were also significant.
Overlaping ROIs:Cortical thickness lh-Banks of Superior Temporal Sulcus, Cortical thickness lh-Banks of Superior Temporal Sulcus, Cortical thickness lh-lateralorbitofrontal, Cortical thickness lh-lateralorbitofrontal, Cortical thickness lh-medialorbitofrontal, Cortical thickness lh-medialorbitofrontal, Cortical thickness lh-middletemporal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-middletemporal, Cortical thickness rh-middletemporal
Prenatal vars:C-Section, Gestational Age, C-Section, Birth weight, Gestational Age, Birth weight, Birth weight, Gestational Age, Birth weight, C-Section, Birth weight

Out of 6 significant Cortical Thickness regions associated with Prenatal Adversity in males, 6 were also significant.
Overlaping ROIs:Cortical thickness lh-lateralorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-middletemporal, Cortical thickness rh-frontalpole
Prenatal vars:Birth weight, C-Section, Gestational Age, Birth weight, Birth weight, Birth weight


Cortical Area
Out of 3 significant Cortical Area regions associated with Prenatal Adversity infemales, only 1.
Overlaping ROIs:Cortical area lh-lateraloccipital
Prenatal vars:Marijuana use

Out of 1 significant Cortical Area regions associated with Prenatal Adversity in males, only 0 were significant.
Overlaping ROIs:
Prenatal vars:


Cortical Sulcal Depth
Out of 4 significant Sulcal depth regions associated with Prenatal Adversity in females, 8 were also significant.
Overlaping ROIs:Sulcal depth lh-fusiform, Sulcal depth lh-fusiform, Sulcal depth lh-fusiform, Sulcal depth rh-fusiform, Sulcal depth rh-fusiform, Sulcal depth rh-superiortemporal, Sulcal depth rh-superiortemporal, Sulcal depth rh-superiortemporal
Prenatal vars:C-Section, Gestational Age, Birth weight, Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight

Out of 16 significant Sulcal Depth regions associated with Prenatal Adversity in males, all 27. were also significant
Overlaping ROIs:smri_sulc_cdk_frpolerh, smri_sulc_cdk_fusiformlh, smri_sulc_cdk_fusiformrh, smri_sulc_cdk_iftmlh, smri_sulc_cdk_iftmrh, smri_sulc_cdk_mdtmrh, smri_sulc_cdk_ptcatelh, smri_sulc_cdk_rracaterh, smri_sulc_cdk_sufrlh, smri_sulc_cdk_sufrrh, smri_sulc_cdk_sutmlh, smri_sulc_cdk_sutmrh, smri_sulc_cdk_tmpolerh
Prenatal vars:Birth weight, C-Section, Gestational Age


eFigure 1 - Population genetic stratification by reported ethnicity

for(i in 1:10){
    abcd[,"PC.y"] <- abcd[,paste0("PC",i)]
    assign(paste0("PC",i),
    abcd%>% dplyr::filter(!is.na(demo_race_ethnicity)) %>% 
        ggplot(aes(x= demo_race_ethnicity, y= PC.y))+
        geom_jitter(color= "black", size=0.2, alpha=0.4) +
        theme_bw()+
        geom_boxplot(aes(fill=demo_race_ethnicity),alpha=.7)+
        theme(
        legend.position="none",
        plot.title = element_text(size=11,hjust = 0.5),
        axis.text.x = element_text(size=9,angle = 45,hjust = 1)
    
        ) +
        labs(title = paste0("PC",i), x="",y="")
    )
}

gridExtra::grid.arrange(PC1,
                        PC2,
                        PC3,
                        PC4,
                        PC5,
                        PC6,
                        PC7,
                        PC8,
                        PC9,
                        PC10, nrow = 2)

jpeg(filename = "eFigure1.jpg", height = 6,width = 12, units = 'in', res = 600)
gridExtra::grid.arrange(PC1,
                        PC2,
                        PC3,
                        PC4,
                        PC5,
                        PC6,
                        PC7,
                        PC8,
                        PC9,
                        PC10, nrow = 2)

dev.off()
## png 
##   2

eFigure 2

eFigure 2A

Principal Component Analysis of Significant Meta-Analysis Brain Regions

# N significant Brain Regions
MetaSigROIsN.f <- sum(Meta_Betas.F$p.value<0.05)
MetaSigROIsN.m <- sum(Meta_Betas.M$p.value<0.05)

# Running Principal component analysis ####
# Females
MetaPCs.F                            <- principal(abcd.f[,Meta_Betas.F$ROI[Meta_Betas.F$p.value<0.05]], 3)
MetaPCsLoadings.F                    <- as.data.frame(MetaPCs.F$loadings[1:MetaSigROIsN.f, 1:3])
rownames(MetaPCsLoadings.F)          <- Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05]
for(i in 1:3){MetaPCsLoadings.F[,i]  <- ifelse(abs(MetaPCsLoadings.F[,i])<.2,0, MetaPCsLoadings.F[,i])}

MetaPCsLoadings.F                    <- arrange(MetaPCsLoadings.F, desc(RC3))
MetaPCsLoadings.F                    <- arrange(MetaPCsLoadings.F, desc(RC2))
MetaPCsLoadings.F                    <- arrange(MetaPCsLoadings.F, desc(RC1))
MetaPCsLoadings.F$ElementDescription <- Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05]

# Re-ordering Cols
colnames(MetaPCsLoadings.F)[1:3]     <- c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3')#renaming PCs
MetaPCsLoadings.F.long               <- reshape2::melt(MetaPCsLoadings.F,
                                             id="ElementDescription",
                                             measure=c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3'),
                                             variable.name="Brain components", value.name="Loading")

MetaPCsLoadings.F.long$ElementDescription <- factor(MetaPCsLoadings.F$ElementDescription,
                                                     levels = Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05])

#Males
MetaPCs.M                            <- principal(abcd.m[,Meta_Betas.M$ROI[Meta_Betas.M$p.value<0.05]], 3)
MetaPCsLoadings.M                    <- as.data.frame(MetaPCs.M$loadings[1:MetaSigROIsN.m, 1:3])
rownames(MetaPCsLoadings.M)          <- Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05]
for(i in 1:3){MetaPCsLoadings.M[,i]  <- ifelse(abs(MetaPCsLoadings.M[,i])<.2,0, MetaPCsLoadings.M[,i])}

MetaPCsLoadings.M                   <- arrange(MetaPCsLoadings.M, desc(RC3))
MetaPCsLoadings.M                   <- arrange(MetaPCsLoadings.M, desc(RC2))
MetaPCsLoadings.M                   <- arrange(MetaPCsLoadings.M, desc(RC1))
MetaPCsLoadings.M$ElementDescription<- Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05]

# Re-ordering Cols
colnames(MetaPCsLoadings.M)[1:3]    <- c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3')#renaming PCs
MetaPCsLoadings.M.long              <- reshape2::melt(MetaPCsLoadings.M,
                                             id="ElementDescription",
                                             measure=c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3'),
                                             variable.name="Brain components", value.name="Loading")

MetaPCsLoadings.M.long$ElementDescription <- factor(MetaPCsLoadings.M$ElementDescription,
                                                     levels = Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05])

Create eFigure 2A - Factor lodings significant brain regions

MetaLoadings.F <-
  ggplot(MetaPCsLoadings.F.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
  facet_wrap( ~ `Brain components`, nrow = 1) +
  geom_bar(stat = "identity") +
  scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
  theme_bw(base_size = 10)+
  geom_vline(xintercept = 0, linewidth=.25)+
  coord_cartesian(xlim = c(-.6,.8))+
    labs(y="Brain Data Modalities and Regions", title = 'Females')+
  theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_blank())

MetaLoadings.M <-
  ggplot(MetaPCsLoadings.M.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
  facet_wrap( ~ `Brain components`, nrow = 1) +
  geom_bar(stat = "identity") +
  scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
  coord_cartesian(xlim = c(-.6,.8))+
  theme_bw(base_size = 10) +
  geom_vline(xintercept = 0, linewidth=.25)+
  labs(y="Brain Data Modalities and Regions", title = 'Males')+
  theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
          plot.title = element_text(size = 11,hjust = 0.5),axis.title.x =  element_blank())

grid.arrange(MetaLoadings.F, MetaLoadings.M, ncol=2)

jpeg(filename = "eFigure2A.jpg", height = 6,width = 13, units = 'in', res = 600)
grid.arrange(MetaLoadings.F, MetaLoadings.M, ncol=2)
dev.off()
## png 
##   2

eFigure 2B

Analysis Meta Brain PCs and children’s behavior and cognition

# Exploring PCs and CBCL and Cognitive measures

abcd.f[,'MetaBrain.PC1'] <-  as.numeric(MetaPCs.F$scores[,1])
abcd.f[,'MetaBrain.PC2'] <-  as.numeric(MetaPCs.F$scores[,2])
abcd.f[,'MetaBrain.PC3'] <-  as.numeric(MetaPCs.F$scores[,3])

abcd.m[,'MetaBrain.PC1'] <-  as.numeric(MetaPCs.M$scores[,1])
abcd.m[,'MetaBrain.PC2'] <-  as.numeric(MetaPCs.M$scores[,2])
abcd.m[,'MetaBrain.PC3'] <-  as.numeric(MetaPCs.M$scores[,3])

CBCL_results.F <- LME_loop(
  predictors = c('MetaBrain.PC1', 'MetaBrain.PC2', "MetaBrain.PC3"),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.f
)

CBCL_results.F$FDR <- p.adjust(CBCL_results.F$p_value_Predictor, 'fdr')

CBCL_results.M <- LME_loop(
  predictors = c('MetaBrain.PC1', 'MetaBrain.PC2', "MetaBrain.PC3"),
  outcomes = c(
    'cbcl_scr_syn_external_t',
    "cbcl_scr_syn_internal_t",
    "cbcl_scr_syn_totprob_t",
    'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
    'nihtbx_cryst_fc',    # Crystallized Composite Fully-Corrected z-score 
    'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
  ),
  covars = covars.x,
  Scale = TRUE,
  data = abcd.m
)

CBCL_results.M$FDR <- p.adjust(CBCL_results.M$p_value_Predictor, 'fdr')

Associations Between Meta-analysis Brain Components with Behavior Problems and Cognition

kable(cbind(CBCL_results.F[,-c(1,3:4)],CBCL_results.M[,-c(1:5)]), 
      digits = 4, 
      caption = "Associations Meta-analysis Brain Components with Behavior Problems and Cognition",row.names = F)%>%
  kableExtra::kable_styling(position = "center")%>%
  add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
Associations Meta-analysis Brain Components with Behavior Problems and Cognition
Females
Males
Outcome Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
cbcl_scr_syn_external_t MetaBrain.PC1 -0.0245 0.0159 3371 0.285 0.1224 0.1847 -0.0857 0.0157 3644 0.280 0.0000 0.0000
cbcl_scr_syn_external_t MetaBrain.PC2 0.0315 0.0161 3371 0.286 0.0500 0.1125 0.0027 0.0146 3644 0.274 0.8549 0.9618
cbcl_scr_syn_external_t MetaBrain.PC3 0.0310 0.0156 3371 0.285 0.0468 0.1125 0.0239 0.0142 3644 0.275 0.0930 0.1861
cbcl_scr_syn_internal_t MetaBrain.PC1 0.0145 0.0157 3371 0.306 0.3553 0.4568 -0.0521 0.0155 3644 0.293 0.0008 0.0029
cbcl_scr_syn_internal_t MetaBrain.PC2 0.0099 0.0160 3371 0.306 0.5351 0.6421 -0.0077 0.0145 3644 0.292 0.5962 0.8255
cbcl_scr_syn_internal_t MetaBrain.PC3 0.0260 0.0153 3371 0.306 0.0907 0.1632 0.0056 0.0141 3644 0.292 0.6897 0.8867
cbcl_scr_syn_totprob_t MetaBrain.PC1 -0.0043 0.0148 3371 0.381 0.7693 0.8145 -0.0745 0.0146 3644 0.372 0.0000 0.0000
cbcl_scr_syn_totprob_t MetaBrain.PC2 0.0086 0.0154 3371 0.381 0.5768 0.6489 0.0004 0.0136 3644 0.368 0.9773 0.9773
cbcl_scr_syn_totprob_t MetaBrain.PC3 0.0259 0.0146 3371 0.381 0.0751 0.1502 0.0104 0.0131 3644 0.368 0.4262 0.6975
nihtbx_totalcomp_fc MetaBrain.PC1 0.1289 0.0192 3070 0.059 0.0000 0.0000 0.0843 0.0189 3333 0.044 0.0000 0.0000
nihtbx_totalcomp_fc MetaBrain.PC2 -0.0305 0.0199 3070 0.046 0.1264 0.1847 -0.0385 0.0175 3333 0.040 0.0282 0.0635
nihtbx_totalcomp_fc MetaBrain.PC3 -0.0558 0.0189 3070 0.048 0.0032 0.0103 -0.0013 0.0170 3333 0.038 0.9379 0.9773
nihtbx_cryst_fc MetaBrain.PC1 0.1234 0.0192 3082 0.047 0.0000 0.0000 0.0936 0.0188 3349 0.047 0.0000 0.0000
nihtbx_cryst_fc MetaBrain.PC2 0.0046 0.0201 3082 0.035 0.8196 0.8196 -0.0201 0.0174 3349 0.039 0.2485 0.4474
nihtbx_cryst_fc MetaBrain.PC3 -0.0284 0.0189 3082 0.037 0.1334 0.1847 0.0046 0.0168 3349 0.039 0.7850 0.9420
nihtbx_fluidcomp_fc MetaBrain.PC1 0.0816 0.0195 3075 0.035 0.0000 0.0002 0.0426 0.0192 3332 0.023 0.0265 0.0635
nihtbx_fluidcomp_fc MetaBrain.PC2 -0.0573 0.0196 3075 0.033 0.0034 0.0103 -0.0425 0.0177 3332 0.023 0.0164 0.0493
nihtbx_fluidcomp_fc MetaBrain.PC3 -0.0590 0.0191 3075 0.032 0.0020 0.0090 -0.0104 0.0172 3332 0.022 0.5456 0.8184
kable(cbind(Prenatal_results.F[,-c(1,3:4)],Prenatal_results.M[,-c(1:5)]), 
      digits = 3, 
      caption = "Associations Prenatal Adverse Exposures with Behavior Problems and Cognition",row.names = F)%>%
  kableExtra::kable_styling(position = "center")%>%add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
Associations Prenatal Adverse Exposures with Behavior Problems and Cognition
Females
Males
Outcome Predictor Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR Beta_Predictor Std.error Sample_size R2 p_value_Predictor FDR
cbcl_scr_syn_external_t A_Prenatal_Burden_Score_z 0.050 0.016 3371 0.286 0.002 0.004 0.026 0.010 3644 0.274 0.012 0.037
cbcl_scr_syn_internal_t A_Prenatal_Burden_Score_z 0.024 0.016 3371 0.305 0.128 0.154 0.018 0.010 3644 0.292 0.085 0.170
cbcl_scr_syn_totprob_t A_Prenatal_Burden_Score_z 0.052 0.015 3371 0.381 0.000 0.003 0.030 0.010 3644 0.368 0.002 0.013
nihtbx_totalcomp_fc A_Prenatal_Burden_Score_z -0.040 0.020 3070 0.048 0.040 0.060 -0.001 0.013 3333 0.038 0.922 0.922
nihtbx_cryst_fc A_Prenatal_Burden_Score_z 0.000 0.020 3082 0.035 0.999 0.999 0.009 0.013 3349 0.038 0.462 0.659
nihtbx_fluidcomp_fc A_Prenatal_Burden_Score_z -0.064 0.020 3075 0.033 0.001 0.003 -0.008 0.013 3332 0.022 0.549 0.659

Specifing mediation model of Meta-analysis Brain PCs

#### Specifing Mediation Models ####
# Mediation MetaBrain PC1 ####

#Total problems
med.MetaBrainPC1.Tot <- "
    # direct effect
    cbcl_scr_syn_totprob_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_totprob_t.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_totprob_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

#Externalizing problems - PC1
med.MetaBrainPC1.Ext <- "
    # direct effect
    cbcl_scr_syn_external_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_external_t.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_external_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"
# Internalizing
med.MetaBrainPC1.Int <- "
    # direct effect
    cbcl_scr_syn_internal_t.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    cbcl_scr_syn_internal_t.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    cbcl_scr_syn_internal_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Total Cognition
med.MetaBrainPC1.CogTotal <- "
    # direct effect
    nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_totalcomp_fc.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Fluid Cognition - PC1 and PC2
med.MetaBrainPC1.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

med.MetaBrainPC2.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC2 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC2
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

med.MetaBrainPC3.CogFluid <- "
    # direct effect
    nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    
    MetaBrain.PC3 ~ a*A_Prenatal_Burden_Score
    nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC3
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

# Cryst Cognition
med.MetaBrainPC1.CogCryst <- "
    # direct effect
    nihtbx_cryst_fc.std ~ c*A_Prenatal_Burden_Score
    # mediator
    MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
    nihtbx_cryst_fc.std ~ b*MetaBrain.PC1
    
    # indirect effect (a*b)
    ab := a*b
    # total effect
    total := c + (a*b)
    #Indirect/total effect
    abtot := ab/total

    #Covars
    MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness
    
    nihtbx_cryst_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
    asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
    PC8_z + PC9_z + PC10_z + brainvol.pgs_0.0001_z + Handedness

"

#Mediation Females

fit.MetaBrainPC1.CogTotal.f <- lavaan::sem(med.MetaBrainPC1.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.CogCryst.f <- lavaan::sem(med.MetaBrainPC1.CogCryst, data = abcd.f, se = "bootstrap", bootstrap = 1000)

fit.MetaBrainPC1.CogFluid.f <- lavaan::sem(med.MetaBrainPC1.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC2.CogFluid.f <- lavaan::sem(med.MetaBrainPC2.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC3.CogFluid.f <- lavaan::sem(med.MetaBrainPC3.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)


#Mediation Males
fit.MetaBrainPC1.Tot.m      <- lavaan::sem(med.MetaBrainPC1.Tot     , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.Ext.m      <- lavaan::sem(med.MetaBrainPC1.Ext     , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.Int.m      <- lavaan::sem(med.MetaBrainPC1.Int     , data = abcd.m, se = "bootstrap", bootstrap = 1000)

fit.MetaBrainPC1.CogTotal.m <- lavaan::sem(med.MetaBrainPC1.CogTotal, data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.CogCryst.m <- lavaan::sem(med.MetaBrainPC1.CogCryst, data = abcd.m, se = "bootstrap", bootstrap = 1000)

Preparing Mediation Results

#Females
fit.Pars.MetaBrainPC1.CogTotal.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogTotal.f, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC1.CogCryst.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogCryst.f, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC1.CogFluid.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogFluid.f, boot.ci.type = "bca.simple") 

fit.Pars.MetaBrainPC2.CogFluid.f <- lavaan::parameterestimates(fit.MetaBrainPC2.CogFluid.f, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC3.CogFluid.f <- lavaan::parameterestimates(fit.MetaBrainPC3.CogFluid.f, boot.ci.type = "bca.simple") 

# Males
fit.Pars.MetaBrainPC1.Tot.m      <- lavaan::parameterestimates(fit.MetaBrainPC1.Tot.m, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC1.Ext.m      <- lavaan::parameterestimates(fit.MetaBrainPC1.Ext.m, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC1.Int.m      <- lavaan::parameterestimates(fit.MetaBrainPC1.Int.m, boot.ci.type = "bca.simple") 

fit.Pars.MetaBrainPC1.CogTotal.m <- lavaan::parameterestimates(fit.MetaBrainPC1.CogTotal.m, boot.ci.type = "bca.simple") 
fit.Pars.MetaBrainPC1.CogCryst.m <- lavaan::parameterestimates(fit.MetaBrainPC1.CogCryst.m, boot.ci.type = "bca.simple") 

Create eFigure 2B - Mediation meta-analysis parameters used in eFigure 2B

Mediation Parameters Females

kable(fit.Pars.MetaBrainPC1.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Total Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Total Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_totalcomp_fc.std ~ A_Prenatal_Burden_Score c -0.033 0.012 -2.865 0.004 -0.056 -0.010
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.047 0.011 -4.087 0.000 -0.070 -0.025
nihtbx_totalcomp_fc.std ~ MetaBrain.PC1 b 0.120 0.019 6.389 0.000 0.083 0.157
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.032 0.012 -2.677 0.007 -0.055 -0.009
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.082 0.012 6.792 0.000 0.058 0.105
ab := a*b ab -0.006 0.002 -3.352 0.001 -0.010 -0.003
total := c+(a*b) total -0.039 0.012 -3.328 0.001 -0.062 -0.017
abtot := ab/total abtot 0.145 0.092 1.586 0.113 0.067 0.398
kable(fit.Pars.MetaBrainPC1.CogCryst.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Crystallized Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Crystallized Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_cryst_fc.std ~ A_Prenatal_Burden_Score c -0.012 0.012 -0.958 0.338 -0.036 0.012
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.047 0.012 -3.933 0.000 -0.071 -0.024
nihtbx_cryst_fc.std ~ MetaBrain.PC1 b 0.116 0.019 6.004 0.000 0.077 0.152
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.031 0.012 -2.556 0.011 -0.054 -0.007
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.083 0.013 6.643 0.000 0.059 0.107
ab := a*b ab -0.005 0.002 -3.292 0.001 -0.009 -0.003
total := c+(a*b) total -0.017 0.012 -1.401 0.161 -0.040 0.007
abtot := ab/total abtot 0.313 6.154 0.051 0.959 -0.392 5.750
kable(fit.Pars.MetaBrainPC1.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC1 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.041 0.012 -3.328 0.001 -0.064 -0.018
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.046 0.011 -4.138 0.000 -0.069 -0.025
nihtbx_fluidcomp_fc.std ~ MetaBrain.PC1 b 0.075 0.020 3.838 0.000 0.039 0.116
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.031 0.012 -2.642 0.008 -0.055 -0.008
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.082 0.012 6.555 0.000 0.059 0.107
ab := a*b ab -0.004 0.001 -2.700 0.007 -0.007 -0.001
total := c+(a*b) total -0.044 0.012 -3.647 0.000 -0.067 -0.021
abtot := ab/total abtot 0.079 0.048 1.656 0.098 0.026 0.213
kable(fit.Pars.MetaBrainPC2.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC2 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.046 0.012 -3.836 0.000 -0.069 -0.022
MetaBrain.PC2 ~ A_Prenatal_Burden_Score a -0.031 0.012 -2.577 0.010 -0.056 -0.006
nihtbx_fluidcomp_fc.std ~ MetaBrain.PC2 b -0.061 0.018 -3.436 0.001 -0.097 -0.027
MetaBrain.PC1 ~ A_Prenatal_Burden_Score aPC1 -0.046 0.012 -3.984 0.000 -0.071 -0.024
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.082 0.012 6.915 0.000 0.060 0.105
ab := a*b ab 0.002 0.001 2.005 0.045 0.000 0.004
total := c+(a*b) total -0.044 0.012 -3.663 0.000 -0.068 -0.020
abtot := ab/total abtot -0.044 0.090 -0.483 0.629 -0.144 -0.009
kable(fit.Pars.MetaBrainPC3.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC3 for Fluid Cognition - Females") %>% 
  kable_styling(position = "center")
Mediation parameters PC3 for Fluid Cognition - Females
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_fluidcomp_fc.std ~ A_Prenatal_Burden_Score c -0.040 0.012 -3.292 0.001 -0.065 -0.018
MetaBrain.PC3 ~ A_Prenatal_Burden_Score a 0.082 0.012 6.659 0.000 0.056 0.106
nihtbx_fluidcomp_fc.std ~ MetaBrain.PC3 b -0.045 0.018 -2.493 0.013 -0.080 -0.009
MetaBrain.PC1 ~ A_Prenatal_Burden_Score aPC1 -0.046 0.011 -4.052 0.000 -0.068 -0.022
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 -0.031 0.013 -2.497 0.013 -0.056 -0.005
ab := a*b ab -0.004 0.002 -2.296 0.022 -0.007 -0.001
total := c+(a*b) total -0.044 0.012 -3.591 0.000 -0.069 -0.021
abtot := ab/total abtot 0.084 0.052 1.608 0.108 0.015 0.200

Mediation Parameters Males

kable(fit.Pars.MetaBrainPC1.Tot.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Total Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_totprob_t.std ~ A_Prenatal_Burden_Score c 0.014 0.010 1.457 0.145 -0.005 0.033
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.076 0.010 -7.305 0.000 -0.097 -0.056
cbcl_scr_syn_totprob_t.std ~ MetaBrain.PC1 b -0.064 0.014 -4.599 0.000 -0.089 -0.035
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.082 0.011 7.580 0.000 0.060 0.101
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.061 0.012 5.247 0.000 0.037 0.083
ab := a*b ab 0.005 0.001 3.821 0.000 0.003 0.008
total := c+(a*b) total 0.019 0.010 1.967 0.049 0.000 0.037
abtot := ab/total abtot 0.260 0.848 0.306 0.760 0.086 2.056
kable(fit.Pars.MetaBrainPC1.Ext.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Externalizing Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Externalizing Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_external_t.std ~ A_Prenatal_Burden_Score c 0.013 0.010 1.260 0.208 -0.007 0.032
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.076 0.011 -7.246 0.000 -0.099 -0.057
cbcl_scr_syn_external_t.std ~ MetaBrain.PC1 b -0.080 0.015 -5.327 0.000 -0.110 -0.050
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.082 0.011 7.136 0.000 0.058 0.106
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.061 0.012 5.231 0.000 0.039 0.084
ab := a*b ab 0.006 0.001 4.332 0.000 0.004 0.009
total := c+(a*b) total 0.019 0.010 1.873 0.061 0.000 0.039
abtot := ab/total abtot 0.327 6.657 0.049 0.961 0.122 2.609
kable(fit.Pars.MetaBrainPC1.Int.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Internalizing Problems - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Internalizing Problems - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
cbcl_scr_syn_internal_t.std ~ A_Prenatal_Burden_Score c 0.006 0.009 0.668 0.504 -0.014 0.023
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.076 0.011 -7.210 0.000 -0.096 -0.055
cbcl_scr_syn_internal_t.std ~ MetaBrain.PC1 b -0.042 0.015 -2.777 0.005 -0.072 -0.009
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.082 0.011 7.227 0.000 0.059 0.104
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.061 0.012 5.258 0.000 0.039 0.083
ab := a*b ab 0.003 0.001 2.549 0.011 0.001 0.006
total := c+(a*b) total 0.009 0.009 1.019 0.308 -0.010 0.027
abtot := ab/total abtot 0.341 4.609 0.074 0.941 -0.350 8.115
kable(fit.Pars.MetaBrainPC1.CogTotal.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Cognition - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Total Cognition - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_totalcomp_fc.std ~ A_Prenatal_Burden_Score c -0.013 0.012 -1.071 0.284 -0.037 0.011
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.069 0.011 -6.309 0.000 -0.090 -0.047
nihtbx_totalcomp_fc.std ~ MetaBrain.PC1 b 0.081 0.018 4.375 0.000 0.047 0.119
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.077 0.012 6.566 0.000 0.055 0.100
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.060 0.012 4.899 0.000 0.036 0.083
ab := a*b ab -0.006 0.002 -3.469 0.001 -0.009 -0.003
total := c+(a*b) total -0.018 0.012 -1.548 0.122 -0.042 0.005
abtot := ab/total abtot 0.304 42.337 0.007 0.994 0.058 3.800
kable(fit.Pars.MetaBrainPC1.CogCryst.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Crystallized Cognition - Males") %>% 
  kable_styling(position = "center")
Mediation parameters for Crystallized Cognition - Males
lhs op rhs label est se z pvalue ci.lower ci.upper
nihtbx_cryst_fc.std ~ A_Prenatal_Burden_Score c -0.009 0.012 -0.789 0.430 -0.033 0.013
MetaBrain.PC1 ~ A_Prenatal_Burden_Score a -0.069 0.011 -6.283 0.000 -0.087 -0.046
nihtbx_cryst_fc.std ~ MetaBrain.PC1 b 0.096 0.018 5.403 0.000 0.061 0.132
MetaBrain.PC2 ~ A_Prenatal_Burden_Score aPC2 0.077 0.012 6.594 0.000 0.054 0.101
MetaBrain.PC3 ~ A_Prenatal_Burden_Score aPC3 0.061 0.012 5.229 0.000 0.037 0.083
ab := a*b ab -0.007 0.002 -4.100 0.000 -0.010 -0.004
total := c+(a*b) total -0.016 0.012 -1.362 0.173 -0.039 0.007
abtot := ab/total abtot 0.414 4.291 0.097 0.923 -0.965 9.593